Home
last modified time | relevance | path

Searched refs:out (Results 1 – 25 of 33) sorted by relevance

12

/dokuwiki/lib/plugins/config/core/
H A DWriter.php50 $out = '';
53 $out .= $setting->out('conf', 'php');
57 if ($out === '') {
60 $out = $this->getHeader() . $out;
62 fwrite($fh, $out);
/dokuwiki/inc/
H A Dtemplate.php482 $out = '<a href="' . $url . '" ';
483 if ($more) $out .= ' ' . $more;
484 $out .= ">$name</a>";
485 if ($return) return $out;
486 echo $out;
504 $out = '<bdi>' . html_wikilink($id, $name) . '</bdi>';
505 if ($return) return $out;
506 echo $out;
513 * Tries to find out which page is parent.
554 $out
[all...]
H A Dhtml.php835 $out = '<!-- TOC START -->' . DOKU_LF;
836 $out .= '<div id="dw__toc" class="dw__toc">' . DOKU_LF;
837 $out .= '<h3 class="toggle">';
838 $out .= $lang['toc'];
839 $out .= '</h3>' . DOKU_LF;
840 $out .= '<div>' . DOKU_LF;
841 $out .= html_buildlist($toc, 'toc', 'html_list_toc', null, true);
842 $out .= '</div>' . DOKU_LF . '</div>' . DOKU_LF;
843 $out .= '<!-- TOC END -->' . DOKU_LF;
844 return $out;
[all...]
H A Dpreload.php.dist6 * local configuration files out of the main ./conf directory.
H A Dauth.php142 $out = [];
164 $out[] = "$nid\t$nrest";
168 $out[] = "$id\t$rest";
172 return $out;
478 * Log out the current user
H A Dinfoutils.php356 msg("Your server's clock seems to be out of sync!
/dokuwiki/lib/plugins/config/core/Setting/
H A DSetting.php144 $out = str_replace(Configuration::KEYMARKER, "»", $this->key);
145 if ($url && !strstr($out, '»')) {//provide no urls for plugins, etc.
146 if ($out == 'start') {
148 return '<a href="https://www.dokuwiki.org/config:startpage">' . $out . '</a>';
150 return '<a href="https://www.dokuwiki.org/config:' . $out . '">' . $out . '</a>';
153 return $out;
222 * @see out() to run when this returns true
253 public function out($var, $fmt = 'php')
263 $out
242 public function out($var, $fmt = 'php') { global() function in dokuwiki\\plugin\\config\\core\\Setting\\Setting
[all...]
H A DSettingNumeric.php38 public function out($var, $fmt = 'php')
43 $out = '$' . $var . "['" . $this->getArrayKey() . "'] = " . $local . ";\n";
45 return $out;
34 public function out($var, $fmt = 'php') { global() function in dokuwiki\\plugin\\config\\core\\Setting\\SettingNumeric
/dokuwiki/inc/Utf8/
H A DConversion.php133 $out = $bom ? "\xFE\xFF" : '';
135 return $out . mb_convert_encoding($str, 'UTF-16BE', 'UTF-8');
140 $out .= pack('n', $cp);
142 return $out;
H A DUnicode.php42 $out = [];
54 $out[] = $in;
144 $out[] = $mUcs4;
166 return $out;
234 'unicode_to_utf8: Codepoint out of Unicode range ' .
239 // out of range
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
H A DREADME.md
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php8 * Takes the hard work out of managing a complete RSS/Atom solution.
170 $out = "GET $get HTTP/1.1\r\n";
171 $out .= "Host: $url_parts[host]\r\n";
172 $out .= "User-Agent: $useragent\r\n";
174 $out .= "Accept-Encoding: x-gzip,gzip,deflate\r\n";
178 $out .= "Authorization: Basic " . base64_encode("$url_parts[user]:$url_parts[pass]") . "\r\n";
181 $out .= "$key: $value\r\n";
183 $out .= "Connection: Close\r\n\r\n";
184 fwrite($fp, $out);
241 $this->error = 'fsocket timed out';
[all...]
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DTableFormatter.php88 * Tries to figure out the width of the terminal
206 $out = '';
218 $out .= $chunk;
222 $out .= $this->border;
225 $out .= "\n";
227 return $out;
H A DOptions.php396 $out = $this->colors->wrap('<' . $arg['name'] . '>', Colors::C_CYAN);
399 $out = '[' . $out . ']';
401 $text .= ' ' . $out;
/dokuwiki/inc/HTTP/
H A DHTTPClient.php618 * response times out or ends prematurely.
860 $out = '';
862 $out .= $boundary . HTTP_NL;
864 $out .= 'Content-Disposition: form-data; name="' . urlencode($key) . '"' . HTTP_NL;
865 $out .= HTTP_NL; // end of headers
866 $out .= $val;
867 $out .= HTTP_NL;
869 $out .= 'Content-Disposition: form-data; name="' . urlencode($key) . '"';
870 if ($val['filename']) $out .= '; filename="' . urlencode($val['filename']) . '"';
871 $out
[all...]
/dokuwiki/inc/parser/
H A Dxhtml.php1937 $out = '';
1939 $out .= '<video ' . buildAttributes($atts) . ' controls="controls"';
1940 if ($posterUrl) $out .= ' poster="' . hsc($posterUrl) . '"';
1941 $out .= '>' . NL;
1957 $out .= '<source src="' . hsc($url) . '" type="' . $mime . '" />' . NL;
1974 $out .= "<track kind=\"$kind\" srclang=\"$srclang\" ";
1975 $out .= "label=\"$srclang\" ";
1976 $out .= 'src="' . ml($trackid, '', true) . '">' . NL;
1980 $out .= $fallback;
1981 $out
[all...]
/dokuwiki/inc/Extension/
H A DPluginController.php261 $out = "<?php\n/*\n * Local plugin enable/disable settings\n" .
267 $out .= "\$plugins['$plugin'] = $value;\n";
277 return io_saveFile($file, $out);
291 //Can't do anything about protected one so rule them out completely
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php588 foreach ($this->_hangul_decompose($v) as $out) {
589 $output[] = (int) $out;
593 foreach ($this->_apply_cannonical_ordering($this->NP['replacemaps'][$v]) as $out) {
594 $output[] = (int) $out;
613 $out = $this->_combine(array_slice($output, $last_starter, $seq_len));
616 if ($out) {
617 $output[$last_starter] = $out;
618 if (count($out) != $seq_len) {
679 // Find out, whether two current characters are LV and T
687 // Find out, whethe
[all...]
/dokuwiki/lib/tpl/dokuwiki/css/
H A Dpagetools.less3 * (fly out navigation beside the page to edit, etc).
13 /* give the same space to the left to balance it out */
/dokuwiki/lib/plugins/authplain/
H A Dauth.php29 * Carry out sanity checks to ensure the object is
314 $out = [];
320 $out[$user] = $info;
328 return $out;
/dokuwiki/vendor/geshi/geshi/
H A DTHANKS16 - bbspliff - Thanks for pointing out that bug (pity I already
20 - Ben Keen - Thanks for the language files and pointing out some
34 - Jack Lloyd - Thanks for pointing out the versioning and method CSS bugs, and giving
41 - Roberto Armellin - Thanks for pointing out some flaws in GeSHi (that will be solved
286 Do you want your name in here? Help me out! Make a language file, or suggest a new
/dokuwiki/conf/
H A Dacronyms.conf40 LOL Laughing out loud
/dokuwiki/data/
H A Ddeleted.files941 _test/tests/lib/exe/js_js_compress/test-CommentInDoubleQuotes1-out.js
943 _test/tests/lib/exe/js_js_compress/test-CommentInDoubleQuotes2-out.js
945 _test/tests/lib/exe/js_js_compress/test-CommentInSingleQuotes1-out.js
947 _test/tests/lib/exe/js_js_compress/test-CommentInSingleQuotes2-out.js
949 _test/tests/lib/exe/js_js_compress/test-CommentMultiline-out.js
951 _test/tests/lib/exe/js_js_compress/test-CommentSingleLine-out.js
953 _test/tests/lib/exe/js_js_compress/test-IfThenElseBraces-out.js
955 _test/tests/lib/exe/js_js_compress/test-IfThenElseNoBraces-out.js
957 _test/tests/lib/exe/js_js_compress/test-RegexpBackslash-out.js
959 _test/tests/lib/exe/js_js_compress/test-RegexpSimple-out
[all...]
/dokuwiki/data/pages/wiki/
H A Ddokuwiki.txt50 * [[https://forum.dokuwiki.org|Check out the user forum]]

12