Home
last modified time | relevance | path

Searched refs:output (Results 626 – 650 of 1255) sorted by path

1...<<21222324252627282930>>...51

/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/formatplus/syntax/
H A Dblockdeleteplus.php83 $output = array('','','');
87 $output = '';
90 $output = $match;
93 return array($state,$output);
97 list($state,$output) = $data;
102 if(!empty($output[0])){
105 if(!empty($output[1])){
108 if(!empty($output[2])){
126 if(!empty($output[0])){
130 if(!empty($output[1])){
[all …]
H A Dblockinsertplus.php78 $output = array('','','');
82 $output = '';
85 $output = $match;
88 return array($state,$output);
92 list($state,$output) = $data;
97 if(!empty($output[0])){
100 if(!empty($output[1])){
103 if(!empty($output[2])){
121 if(!empty($output[0])){
125 if(!empty($output[1])){
[all …]
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 …]
H A Dquoteplus.php56 $output = substr($match,3,-1);
58 $output = '';
61 $output = '';
64 $output = $match;
67 return array($state,$output);
71 list($state,$output) = $data;
75 if (!empty($output)) {
85 $renderer->doc .= $renderer->_xmlEntities($output);
94 if(!empty($output)){
95 $renderer->doc .= $output.':';
[all …]
/plugin/formatplus2/
H A DCOPYING74 running the Program is not restricted, and the output from the Program
313 If the program is interactive, make it output a short notice like this
H A DLICENSE74 running the Program is not restricted, and the output from the Program
312 If the program is interactive, make it output a short notice like this
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/formatplus2/syntax/
H A Dblockdeleteplus.php83 $output = array('','','');
87 $output = '';
90 $output = $match;
93 return array($state,$output);
97 list($state,$output) = $data;
102 if(!empty($output[0])){
105 if(!empty($output[1])){
108 if(!empty($output[2])){
126 if(!empty($output[0])){
130 if(!empty($output[1])){
[all …]
H A Dblockinsertplus.php78 $output = array('','','');
82 $output = '';
85 $output = $match;
88 return array($state,$output);
92 list($state,$output) = $data;
97 if(!empty($output[0])){
100 if(!empty($output[1])){
103 if(!empty($output[2])){
121 if(!empty($output[0])){
125 if(!empty($output[1])){
[all …]
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 …]
H A Dquoteplus.php56 $output = substr($match,3,-1);
58 $output = '';
61 $output = '';
64 $output = $match;
67 return array($state,$output);
71 list($state,$output) = $data;
75 if (!empty($output)) {
85 $renderer->doc .= $renderer->_xmlEntities($output);
94 if(!empty($output)){
95 $renderer->doc .= $output.':';
[all …]
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
H A DCOPYING74 running the Program is not restricted, and the output from the Program
313 If the program is interactive, make it output a short notice like this
H A Dclass.csstidy_optimise.php548 $output = array();
563 … (isset($output[$num])) ? $output[$num] .= $string{$i} : $output[$num] = $string{$i};
567 … (isset($output[$num])) ? $output[$num] .= $string{$i} : $output[$num] = $string{$i};
576 (isset($output[$num])) ? $output[$num] .= $string{$i} : $output[$num] = $string{$i};
581 if(isset($output[0]))
583 return $output;
587 return array($output);
H A Dclass.csstidy_print.php126 $output = '';
142 $output .= $template[0].'@charset '.$template[5].$this->charset.$template[6];
147 $output .= $template[0].'@import '.$template[5].$this->import[$i].$template[6];
152 $output .= $template[0].'@namespace '.$template[5].$this->namespace.$template[6];
155 $output .= $template[13];
157 $out =& $output;
195 $out =& $output;
207 $output = trim($output);
210 $this->output_css = $output;
213 $this->output_css_plain = $output;
/plugin/freechat/phpfreechat/src/
H A Dphpfreechat.class.php70 $output = '';
72 return $output;
74 echo $output;
82 $output = '';
84 return $output;
86 echo $output;
102 $output = '';
107 foreach( $c->getErrors() as $e ) $output .= "<li>".$e."</li>"; $output .= "</ul>";
117 $output .= $t->getOutput();
123 return $output;
[all …]
/plugin/fullscreenmode/
H A DLICENSE74 running the Program is not restricted, and the output from the Program
312 If the program is interactive, make it output a short notice like this
/plugin/gdpr/
H A DLICENSE74 running the Program is not restricted, and the output from the Program
312 If the program is interactive, make it output a short notice like this
/plugin/gemini/
H A DLICENSE74 running the Program is not restricted, and the output from the Program
312 If the program is interactive, make it output a short notice like this
/plugin/geogebrembed/
H A DLICENSE74 running the Program is not restricted, and the output from the Program
312 If the program is interactive, make it output a short notice like this
/plugin/geonav/tpl/startermap/
H A DCOPYING74 running the Program is not restricted, and the output from the Program
312 If the program is interactive, make it output a short notice like this
H A Dstyle.ini11 ; defines for which output media the style should be loaded. Currently
/plugin/geonav/tpl/startermap/css/
H A Dbasic.css378 output, selector
/plugin/geophp/vendor/funiq/geophp/
H A DLICENSE105 running the Program is not restricted, and the output from the Program
343 If the program is interactive, make it output a short notice like this
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGeoRSS.php235 $output = '<' . $this->nss . 'line>';
237 $output .= $point->y() . ' ' . $point->x();
239 $output .= ' ';
242 $output .= '</' . $this->nss . 'line>';
243 return $output;
252 $output = '<' . $this->nss . 'polygon>';
255 $output .= $point->y() . ' ' . $point->x();
257 $output .= ' ';
260 $output .= '</' . $this->nss . 'polygon>';
261 return $output;
[all...]

1...<<21222324252627282930>>...51