Home
last modified time | relevance | path

Searched refs:output (Results 51 – 75 of 1255) sorted by relevance

12345678910>>...51

/plugin/formatplus/syntax/
H A Dblockquoteplus.php63 $output = trim(substr($match,6,-1));
66 $output = '';
69 $output = $match;
72 return array($state,$output);
76 list($state,$output) = $data;
80 if (!empty($output)) {
81 … $renderer->doc .= '<blockquote class="citation" title="'.$renderer->_xmlEntities($output).'">';
90 $renderer->doc .= $renderer->_xmlEntities($output);
99 if(!empty($output)){
100 $renderer->doc .= $output.':';
[all …]
/plugin/formatplus2/syntax/
H A Dblockquoteplus.php63 $output = trim(substr($match,6,-1));
66 $output = '';
69 $output = $match;
72 return array($state,$output);
76 list($state,$output) = $data;
80 if (!empty($output)) {
81 … $renderer->doc .= '<blockquote class="citation" title="'.$renderer->_xmlEntities($output).'">';
90 $renderer->doc .= $renderer->_xmlEntities($output);
99 if(!empty($output)){
100 $renderer->doc .= $output.':';
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/
H A DVCardConverter.php48 $output = new Component\VCard(array(
54 $this->convertProperty($input, $output, $property, $targetVersion);
58 return $output;
87 $newProperty = $output->createProperty(
99 $newProperty = $this->convertUriToBinary($output, $newProperty);
126 while($output->select('ITEM' . $x . '.')) {
185 $newProperty = $output->createProperty('KIND','ORG');
250 $tempProperty = $output->createProperty($newProperty->name);
255 $output->add($newProperty);
274 $newProperty = $output->createProperty(
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DVCardConverter.php48 $output = new Component\VCard(array(
54 $this->convertProperty($input, $output, $property, $targetVersion);
58 return $output;
87 $newProperty = $output->createProperty(
99 $newProperty = $this->convertUriToBinary($output, $newProperty);
126 while($output->select('ITEM' . $x . '.')) {
185 $newProperty = $output->createProperty('KIND','ORG');
250 $tempProperty = $output->createProperty($newProperty->name);
255 $output->add($newProperty);
274 $newProperty = $output->createProperty(
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DVCardConverter.php48 $output = new Component\VCard(array(
54 $this->convertProperty($input, $output, $property, $targetVersion);
58 return $output;
87 $newProperty = $output->createProperty(
99 $newProperty = $this->convertUriToBinary($output, $newProperty);
126 while($output->select('ITEM' . $x . '.')) {
185 $newProperty = $output->createProperty('KIND','ORG');
250 $tempProperty = $output->createProperty($newProperty->name);
255 $output->add($newProperty);
274 $newProperty = $output->createProperty(
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dstubs.memory_get_usage.inc.php9 $output = array();
10 exec(HTML2PS_DIR.'utils/pslist.exe -m ' . getmypid() , $output);
12 $resultRow = $output[8];
21 exec("ps -eo%mem,rss,pid | grep $pid", $output);
22 $output = explode(" ", $output[0]);
24 return $output[1] * 1024;
/plugin/database/
H A Ddatabase.php1717 $this->output('</div>');
1780 $this->output('</div>');
1875 $this->output ('<tr>');
1883 $this->output ($toGo);
1901 $this->output ('<tr>');
1975 $this->output('<tr>');
1976 $this->output('<td>');
1978 $this->output('</td>');
1979 $this->output('<td>');
1981 $this->output('</td>');
[all …]
/plugin/diagramsnet/lib/js/deflate/
H A Dbase64.js17 var output = "";
43 output = output +
49 return output;
55 var output = "";
73 output = output + String.fromCharCode(chr1);
76 output = output + String.fromCharCode(chr2);
79 output = output + String.fromCharCode(chr3);
86 output = Base64._utf8_decode(output);
89 return output;
/plugin/icalendar/
H A Dvevent.php6 $output = "BEGIN:VCALENDAR\r\n"; variable
7 $output .= "PRODID: -//Google Inc//Google Calendar 70.9054//EN"."\r\n";
8 $output .= "VERSION:2.0\r\n";
9 $output .= "METHOD:PUBLISH"."\r\n";
10 $output .= $vevent;
11 $output .= "END:VCALENDAR\r\n";
44 echo $output;
/plugin/authorlist/
H A Dhelper.php23 protected $output; variable in helper_plugin_authorlist
68 $this->output='';
102 $this->output .= $this->intro.DOKU_LF;
104 $this->output .= "<div class='authorlist'>".DOKU_LF;
158 $this->output .= $this->renderOneAuthor($loginname, $fullname);
168 if($this->displayaslist) $this->output .= "</ul>".DOKU_LF;
170 $this->output .= "</div>".DOKU_LF;
180 return $this->output;
287 $output = str_replace("%CREATOR%",$creator, $this->creatortext);
288 $output = str_replace("%DATE%",strftime($conf['dformat'],$ctime), $output);
[all …]
/plugin/dwcommits/
H A Dsyntax.php24 private $output; variable in syntax_plugin_dwcommits
120 $this->output = "";
174 $this->output = "<b>Query: $q</b><br />";
175 $this->output .= $this->helper->format_result_table($arr,$result);
187 $this->output = "";
195 $this->output .= "<b>Database File:</b> $entry\n";
197 $this->output .= "<b>Remote URL:</b> $url\n";
203 $this->output .= "<b>Local Git Missing:</b> $git\n";
205 else $this->output .= "<b>Local Git:</b> $git\n";
208 $this->output .= "\n";
/plugin/formatplus2/
H A Dformatting.php102 $output = $formatting['tag'];
104 $output .= ' '.$formatting['attrs'];
107 $output = $match;
108 return array($state,$output);
112 list($state,$output) = $data;
116 $renderer->doc .= "<$output>";
119 $renderer->doc .= "</$output>";
122 $renderer->doc .= $renderer->_xmlEntities($output);
129 $renderer->doc .= $output;
/plugin/formatplus/
H A Dformatting.php102 $output = $formatting['tag'];
104 $output .= ' '.$formatting['attrs'];
107 $output = $match;
108 return array($state,$output);
112 list($state,$output) = $data;
116 $renderer->doc .= "<$output>";
119 $renderer->doc .= "</$output>";
122 $renderer->doc .= $renderer->_xmlEntities($output);
129 $renderer->doc .= $output;
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/
H A DAssetCollectionIterator.php29 private $output; variable in Assetic\\Asset\\Iterator\\AssetCollectionIterator
37 $this->output = $coll->getTargetPath();
40 if (false === $pos = strrpos($this->output, '.')) {
41 $this->output .= '_*';
43 $this->output = substr($this->output, 0, $pos).'_*'.substr($this->output, $pos);
71 $clone->setTargetPath(str_replace('*', $name, $this->output));
121 if (false !== strpos($name, $var) && false !== strpos($this->output, $var)) {
/plugin/gtime/gtlib/tsp/
H A DGTHashEntry.php68 $output = array();
73 array_push($output, $byte);
77 array_push($output, $byte);
83 array_push($output, $byte);
87 array_push($output, $byte);
92 array_push($output, $this->level);
94 return $output;
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/Deserializer/
H A DValueObjectTest.php28 $output = $reader->parse();
42 $output
66 $output = $reader->parse();
80 $output
105 $output = $reader->parse();
124 $output
143 $output = $reader->parse();
155 $output
/plugin/yalist/
H A Dsyntax.php60 $output = array();
67 $output,
91 $output,
113 $output,
126 $output,
134 $output = $match;
146 $output,
168 $output,
190 $output,
198 $output,
[all …]
/plugin/passpolicy/
H A Dhelper.php248 $output = '';
282 return str_shuffle($output);
322 $output = '';
326 $output .= $all[$this->rand(0, $a_len - 1)];
334 if ($this->usepools['upper']) $output = ucfirst($output);
335 if ($postfix) $output .= $postfix;
337 return $output;
368 $output = '';
375 if ($this->usepools['upper']) $output = ucwords($output);
376 if ($prefix) $output = $prefix . ' ' . $output;
[all …]
/plugin/ckgedit/
H A Dadmin.php25 $this->output = 'invalid';
33 $this->output = 'style_sheet_msg';
38 $this->output = 'alt_style_sheet_msg';
79 if($this->output && $this->output == 'style_sheet_msg') {
81 ptln(htmlspecialchars($this->getLang($this->output)). " " .$this->template);
86 else if($this->output && $this->output == 'alt_style_sheet_msg') {
87 ptln(htmlspecialchars($this->getLang($this->output)). " " .$this->alt);
/plugin/anewssystem/
H A Dsyntax.php159 $output .= '<div class="news_form_div">
642 $output .= '</form></div>';
645 $renderer->doc .= $output;
841 $output .= '</div></div>'.NL.NL;
843 $renderer->doc .= $output;
958 $output .= '</div>'.NL;
959 $renderer->doc .= $output;
989 $output = '<div class="allnews_box">'.NL;
1150 $output.
1166 $renderer->doc .= $output;
[all …]
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/Element/
H A DKeyValueTest.php37 $output = $reader->parse();
81 ], $output);
158 $output = $writer->outputMemory();
174 $this->assertEquals($expected, $output);
196 $output = $reader->parse();
206 ], $output);
/plugin/davcal/vendor/sabre/xml/tests/Sabre/Xml/Element/
H A DKeyValueTest.php37 $output = $reader->parse();
81 ], $output);
158 $output = $writer->outputMemory();
174 $this->assertEquals($expected, $output);
196 $output = $reader->parse();
206 ], $output);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DHtmlFormatter.php88 $output = $this->addTitle($record['level_name'], $record['level']);
89 $output .= '<table cellspacing="1" width="100%" class="monolog-output">';
91 $output .= $this->addRow('Message', (string) $record['message']);
92 $output .= $this->addRow('Time', $this->formatDate($record['datetime']));
93 $output .= $this->addRow('Channel', $record['channel']);
100 $output .= $this->addRow('Context', $embeddedTable, false);
108 $output .= $this->addRow('Extra', $embeddedTable, false);
111 return $output.'</table>';
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DText.php60 $output = PHP_EOL . PHP_EOL;
130 $output .= $this->format($colors['header'], $padding, $title);
135 $output .= $this->format($colors['header'], $padding, $title);
136 $output .= $this->format($colors['header'], $padding, $date);
137 $output .= $this->format($colors['header'], $padding, '');
141 $output .= $this->format($colors['classes'], $padding, $classes);
142 $output .= $this->format($colors['methods'], $padding, $methods);
143 $output .= $this->format($colors['lines'], $padding, $lines);
146 return $output . PHP_EOL;
211 $output .= PHP_EOL . $fullQualifiedPath . PHP_EOL
[all …]
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DDartFilter.php35 $output = FilesystemUtils::createTemporaryFile('dart');
41 ->add('-o'.$output)
50 $this->cleanup($output);
55 if (!file_exists($output)) {
59 $asset->setContent(file_get_contents($output));
60 $this->cleanup($output);

12345678910>>...51