Home
last modified time | relevance | path

Searched refs:ret (Results 1 – 22 of 22) sorted by last modified time

/dokuwiki/lib/plugins/acl/
H A Dadmin.php521 $ret = '';
546 $ret .= '<img src="' . $img . '" alt="' . $alt . '" />';
547 $ret .= '<a href="' .
550 $ret .= $base;
551 $ret .= '</a>';
553 $ret .= '<a href="' .
556 $ret .= noNS($item['id']);
557 $ret .= '</a>';
559 return $ret;
775 $ret
[all...]
/dokuwiki/inc/parser/
H A Dxhtml.php1642 $ret = '';
1643 $ret .= $link['pre'];
1644 $ret .= '<a href="' . $link['url'] . '"';
1645 if (!empty($link['class'])) $ret .= ' class="' . $link['class'] . '"';
1646 if (!empty($link['target'])) $ret .= ' target="' . $link['target'] . '"';
1647 if (!empty($link['title'])) $ret .= ' title="' . $link['title'] . '"';
1648 if (!empty($link['style'])) $ret .= ' style="' . $link['style'] . '"';
1649 if (!empty($link['rel'])) $ret .= ' rel="' . trim($link['rel']) . '"';
1650 if (!empty($link['more'])) $ret .= ' ' . $link['more'];
1651 $ret
[all...]
/dokuwiki/inc/
H A Dparserutils.php82 $ret = '';
92 $ret = p_render('xhtml', p_get_instructions(io_readWikiPage($file, $id, $rev)), $info, $date_at);
94 $ret = p_locale_xhtml('norev');
97 $ret = p_cached_output($file, 'xhtml', $id);
102 $ret = p_locale_xhtml('onceexisted');
104 $ret = p_locale_xhtml('newpage');
111 return $ret;
H A Dtemplate.php924 * @param bool $ret return content instead of printing it
929 function tpl_pageinfo($ret = false)
972 if ($ret) {
989 * @param bool $ret return content instead of printing
994 function tpl_pagetitle($id = null, $ret = false)
1054 if ($ret) {
857 tpl_pageinfo($ret = false) global() argument
922 tpl_pagetitle($id = null, $ret = false) global() argument
H A Dio.php118 $ret = '';
122 $ret = gzfile($file);
123 if (is_array($ret)) {
124 $ret = implode('', $ret);
128 $ret = bzfile($file);
130 $ret = file_get_contents($file);
133 if ($ret === null) return false;
134 if ($ret !== false && $clean) {
135 return cleanText($ret);
[all...]
H A Dcommon.php149 $ret = '<div class="no"><input type="hidden" name="sectok" value="' . getSecurityToken() . '" /></div>' . "\n";
150 if ($print) echo $ret;
151 return $ret;
1580 $ret = (int) substr($value, 0, -1) * 1024 * 1024 * 1024;
1583 $ret = (int) substr($value, 0, -1) * 1024 * 1024;
1586 $ret = (int) substr($value, 0, -1) * 1024;
1589 $ret = (int) $value;
1592 return $ret;
H A Dmedia.php1732 $ret = '';
1734 $ret .= '<a href="' . DOKU_BASE . 'lib/exe/mediamanager.php?ns=' . idfilter($item['id']) . '" class="idx_dir">';
1735 else $ret .= '<a href="' . media_managerURL(['ns' => idfilter($item['id'], false), 'tab_files' => 'files'])
1737 $ret .= $item['label'];
1738 $ret .= '</a>';
1739 return $ret;
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php69 $ret = $this->cmdList($options->getOpt('verbose'));
72 $ret = $this->cmdAdd($options->getOpt('notify'), $options->getArgs());
75 $ret = $this->cmdDelete($options->getArgs());
78 $ret = $this->cmdAddToGroup($options->getArgs());
81 $ret = $this->cmdRemoveFromGroup($options->getArgs());
86 $ret = 0;
89 exit($ret);
/dokuwiki/lib/plugins/extension/
H A Dcli.php80 $ret = $this->cmdList($options->getOpt('verbose'), $options->getOpt('filter', ''));
83 $ret = $this->cmdSearch(
90 $ret = $this->cmdInstall($options->getArgs());
93 $ret = $this->cmdUnInstall($options->getArgs());
96 $ret = $this->cmdEnable(true, $options->getArgs());
99 $ret = $this->cmdEnable(false, $options->getArgs());
102 $ret = $this->cmdUpgrade();
106 $ret = 0;
109 exit($ret);
/dokuwiki/inc/lang/sv/
H A Dlogin.txt
H A Dregister.txt
H A Dresendpwd.txt
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php478 $ret = '';
484 $ret .= '<!DOCTYPE html>';
487 $ret .= '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
491 $ret .= '<html><head>';
492 $ret .= '<meta http-equiv="Content-Type" content="' . $content_type . '; charset=utf-8" />';
493 $ret .= '</head><body>' . $html . '</body></html>';
494 return $ret;
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/inc/Utf8/
H A DConversion.php23 $ret = '';
26 $ret .= chr($cp);
28 $ret .= "&#$cp;";
30 $ret .= '&#x' . dechex($cp) . ';';
33 return $ret;
H A DPhpString.php183 $ret = '';
184 if ($start > 0) $ret .= self::substr($string, 0, $start);
185 $ret .= $replacement;
186 $ret .= self::substr($string, $start + $length);
187 return $ret;
/dokuwiki/lib/scripts/
H A Dmedia.js883 var ret = true; variable
886 ret = forbids[opt] !== false &&
888 return ret;
890 return ret;
/dokuwiki/inc/lang/hu/
H A Duploadmail.txt
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php3704 $ret = $arrays[0];
3706 // merege $ret with the remaining arrays
3709 if (is_array($value) && isset($ret[$key])) {
3710 // if $ret[$key] is not an array you try to merge an scalar value with an array - the result is not defined (incompatible arrays)
3711 // in this case the call will trigger an E_USER_WARNING and the $ret[$key] will be false.
3712 $ret[$key] = $this->merge_arrays($ret[$key], $value);
3714 $ret[$key] = $value;
3719 return $ret;
/dokuwiki/bin/
H A Dgittool.php189 $ret = 0;
190 system($shell, $ret);
192 if ($ret == 0) {
264 $ret = 0;
265 system("git clone $repo $target", $ret);
266 if ($ret === 0) {
/dokuwiki/lib/plugins/acl/lang/sv/
H A Dhelp.txt
/dokuwiki/lib/plugins/authad/adLDAP/
H A DadLDAP.php710 $ret = true;
713 $ret = false;
725 return $ret;