Home
last modified time | relevance | path

Searched refs:output (Results 126 – 150 of 1255) sorted by relevance

12345678910>>...51

/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
H A DExpandFloatingTimesTest.php33 $output = <<<ICS
63 $this->assertEquals($output, str_replace("\r", "", $result));
88 $output = <<<ICS
118 $this->assertEquals($output, str_replace("\r", "", $result));
/plugin/davcal/vendor/sabre/xml/tests/Sabre/Xml/Element/
H A DXmlFragmentTest.php28 $output = $reader->parse();
40 ], $output);
132 $output = $writer->outputMemory();
139 $this->assertEquals($expected, $output);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DCompassFilter.php339 $output = $tempName.'.css';
359 $asset->setContent(file_get_contents($output));
362 unlink($output);
374 $output = array();
379 $output[] = sprintf(' :%s => "%s"', $name, addcslashes($value, '\\'));
381 $output = "{\n".implode(",\n", $output)."\n}";
384 $output[] = sprintf(' "%s"', addcslashes($value, '\\'));
386 $output = "[\n".implode(",\n", $output)."\n]";
389 return $output;
H A DPngoutFilter.php111 $output = FilesystemUtils::createTemporaryFile('pngout_out');
112 unlink($output);
113 $pb->add($output .= '.png');
123 $asset->setContent(file_get_contents($output));
126 unlink($output);
H A DAutoprefixerFilter.php67 $output = FilesystemUtils::createTemporaryFile('autoprefixer');
68 $pb->add('-o')->add($output);
75 $asset->setContent(file_get_contents($output));
76 unlink($output);
H A DOptiPngFilter.php56 $pb->add('-out')->add($output = FilesystemUtils::createTemporaryFile('optipng_out'));
57 unlink($output);
70 $asset->setContent(file_get_contents($output));
73 unlink($output);
/plugin/mediatooltip/
H A Dscript.js6 var date, output="",title = "";
72 output = caption ? (title + '<br />' + caption): title;
73 output = copy ? (output + '<br />' + copy ): output;
76 content: output
/plugin/menupopup/
H A Dsyntax.php172 …$output .= '<div class="menuLink'.($this->vertical?' vertical':'').'">'.p_render('xhtml', p_get_in…
174 …$output .= '<div class="menuContent'.($this->vertical?' vertical':'').'" style="width:'.(empty($th…
175 $output .= $includePage->html();
176 $output .= '</div>';
178 $output .= '</div></div>';
179 return $output;
/plugin/vote/
H A Dsyntax.php76 $output .= '<fieldset class="vote">'.'<legend>'.$title.'</legend>';
77 $output .= "\n";
79 $output .= '<div>'.$question.'</div>';
81 $output .= "\n";
104 $output .= $this->_print_vote_form( $vote_log );
105 $output .= '</fieldset>';
106 $output .= "\n";
108 $renderer->doc .= $output;
/plugin/podcast/action/
H A Dfeed.php113 $output = '';
116 $output = ob_get_contents();
122 $output = preg_replace('/(<a href|<img src)="('.$base.')/s','$1="'.DOKU_URL,$output);
127 …preg_replace('#[^\n]*?>\s*?' . preg_quote(hsc($firstheading), '#') . '\s*?<.*\n#', '', $output, 1);
138 $output = '';
141 $output = ob_get_contents();
/plugin/authorstats/
H A Dsyntax.php121 $output = "<h3>" . $this->getLang("yearly-contrib") . "</h3>";
162 return $output . "<img src=\"" . $url . "\">";
186 …$output = "<h3>" . $this->getLang("gen-stats") . "</h3><table class=\"authorstats-table\"><tr><th>…
194 $output .= "<tr><th>" .
203 $output .= "</table>";
209 return $output;
218 …$output = "<h3>" . $this->getLang("contrib-months") . " " . $months . " " . $this->getLang("months…
230 $output .= "<tr><th>" .
235 $output .= "</table>";
241 return $output;
/plugin/html2pdf/html2pdf/html2ps/
H A DTODO13 Bidirectional text output
16 JPEG/GIF output
17 Completely debug PNG output
21 Encrypted PDF output
22 Write-protected PDF output
/plugin/findologicxmlexport/vendor/twig/twig/doc/functions/
H A Drandom.rst24 {{ random(['apple', 'orange', 'citrus']) }} {# example output: orange #}
25 {{ random('ABC') }} {# example output: C #}
26 …{{ random() }} {# example output: 15386094 (works as the native PHP m…
27 {{ random(5) }} {# example output: 3 #}
28 {{ random(50, 100) }} {# example output: 63 #}
/plugin/vcard/
H A Dvcard.php44 $output = "";
60 $output .= $newline.$escape.$eol; // soft line break; " =\r\n" is okay
65 $output .= $newline;
66 if ($j<count($lines)-1) $output .= $linebreak;
68 return trim($output);
184 $output = $v->getVCard(); variable
188 header('Content-Length: '.strlen($output));
192 echo $output;
/plugin/anewssystem/
H A Daction.php52 function output(&$event, $param) { function in action_plugin_anewssystem
188 …$output .= $close_ytag.'<ul><li class="level1"><div class="li">'.$new_year.'</div><ul class="n_box…
194 … $output .= $close_mtag.'<ul><li class="level2"><div class="li">'.$new_month.'</div>';
201 …archive_options['tag']!=='off') && ($archive_options['class']=='page')) $output .= '<div class="ar…
202 …else $output .= '<ul><li class="level3"><div class="li">'.trim($news_date).$news_head.'</div></li>…
222 $output = '<div class="backlinkDiv" style="font-size:.85em;">'.$backlink.'</div><br />'.NL.
225 '.$output.'
230 echo $output;
/plugin/bibtex/OSBib/format/
H A DBIBSTYLE.php30 function BIBSTYLE($db, $output) argument
43 if($output == 'rtf')
71 $this->output = $output;
72 $this->bibformat->output = $output;
144 if($this->output == 'html')
146 else if($this->output == 'rtf')
166 $url = ($this->output == 'html') ? htmlspecialchars(stripslashes($this->row['url'])) :
169 if($this->output == 'html')
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Exception/
H A DLockedTest.php26 $output = $dom->saveXML();
36 $this->assertEquals($expected, $output);
55 $output = $dom->saveXML();
65 $this->assertEquals($expected, $output);
/plugin/diagramsnet/lib/math/config/
H A DAM_HTMLorMML.js51output:ac,tex:null,ttype:V});B()}function r(ab){z.push(ab);B()}var D=["\uD835\uDC9C","\u212C","\uD… property in k
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/cfm/
H A Dcf_io.cfm26 <cffunction name="CombinePaths" returntype="String" output="true">
34 <cffunction name="GetResourceTypePath" returntype="String" output="false">
68 <cffunction name="GetUrlFromPath" returntype="String" output="false">
76 <cffunction name="RemoveExtension" output="false" returntype="String">
83 <cffunction name="GetExtension" output="false" returntype="String">
94 <cffunction name="ServerMapFolder" returntype="String" output="false">
112 <cffunction name="GetParentFolder" returntype="string" output="false">
138 <cffunction name="IsAllowedExt" returntype="boolean" output="false">
157 <cffunction name="IsAllowedType" returntype="boolean" output="false">
167 <cffunction name="IsAllowedCommand" returntype="boolean" output="true">
[all …]
/plugin/badbehaviour/bad-behavior/
H A Dfunctions.inc.php38 $output = false;
43 $output = true;
51 $output = ((ip2long($addr) & $mask) == (ip2long($ip) & $mask));
53 return $output;
/plugin/dw2pdf/vendor/mpdf/qrcode/
H A DREADME.md3 QR code generating library with HTML/PNG/mPDF output possibilities.
25 $output = new Output\Png();
28 $data = $output->output($qrCode, 100, [255, 255, 255], [0, 0, 0]);
/plugin/pagemod/helper/
H A Dpagemod.php164 … $output = preg_replace_callback('/@@meta\.(.*?)@@/', array($this, 'getMetaValue'), $contents);
166 $output = $this->replace($output);
169 return $output . $full_text;
171 return $full_text . $output;
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DPHP.php30 $output = sprintf(
46 return file_put_contents($target, $output);
48 return $output;
/plugin/dw2pdf/
H A Daction.php581 $outputTarget = $INPUT->str('outputTarget', $this->getConf('output'));
618 $output = [
639 $output['first'] .= $section . ': html_' . $section . $order . ';' . DOKU_LF;
641 $output['page'] .= 'even-' . $section . '-name: html_' . $section . $order . ';' . DOKU_LF;
643 $output['page'] .= 'odd-' . $section . '-name: html_' . $section . $order . ';' . DOKU_LF;
645 $output['page'] .= $section . ': html_' . $section . $order . ';' . DOKU_LF;
669 $output['html'] = $this->pageDependReplacements($html, $ID);
674 $output['cover'] = file_get_contents($coverfile);
675 $output['cover'] = str_replace(array_keys($replace), array_values($replace), $output['cove
[all...]
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/Element/
H A DCDataTest.php28 $output = $reader->parse();
45 $output = $writer->outputMemory();
53 $this->assertEquals($expected, $output);

12345678910>>...51