Home
last modified time | relevance | path

Searched refs:ret (Results 126 – 150 of 351) sorted by relevance

12345678910>>...15

/plugin/crossdbsqlclient/syntax/
H A Dcrossdbsqlclient.php157 $ret = '<u><b>' . $this->getLang ( 'templatesLabel' ) . '</b></u><br>';
167 return $ret;
171 …$ret = $ret . '<button style="margin:4px" onclick="return crossdbsqlclient_load(\'' . $sql . '\')"…
174 return $ret;
/plugin/simplemysqlclient/syntax/
H A Dsimplemysqlclient.php559 $ret = '<u><b>' . $this->getLang ( 'templatesLabel' ) . '</b></u><br>';
569 return $ret;
573 …$ret = $ret . '<button style="margin:4px" onclick="return simplemysqlclient_load(\'' . $sql . '\')…
576 return $ret;
579 $ret = '<u><b>' . $this->getLang ( 'shortcutslabel' ) . '</b></u><br>';
589 return $ret;
594 …$ret = $ret . '<button style="margin:4px" onclick="return simplemysqlclient_load(\'' . $sql . '\')…
597 return $ret;
/plugin/captcha/
H A Dfiglet.php121 $ret = "";
131 $ret .= str_replace("\n", "", $v[$i]);
134 $ret .= "\n";
137 return $ret;
/plugin/inlineedit/
H A Dscript.js29 var ret = ajaxedit_parse(data);
30 ajaxedit_checkResponse(ret);
32 $self.html(ret.text);
/plugin/authgoogle/google/cache/
H A DGoogle_ApcCache.php72 if (($ret = @apc_fetch($key)) === false) {
75 if (!$expiration || (time() - $ret['time'] > $expiration)) {
79 return unserialize($ret['data']);
/plugin/addnewpage/
H A Dsyntax.php178 $ret = '<select class="edit" id="np_cat" name="np_cat" tabindex="1">';
187 …$ret .= '<option ' . (($currentns == '') ? 'selected ' : '') . ' value="">' . $this->getLang('name…
190 …$ret .= '<option ' . (($currentns == $dest_ns) ? 'selected ' : '') . ' value="' . formText($dest_n…
218 $ret .= '<option ' .
228 $ret .= '</select>';
231 return $ret;
/plugin/supa/action/
H A Daction.php92 $ret = $supa->decodeScreenshotFile( $f, $id );
93 if( $ret ) {
101 return $ret;
/plugin/dokumicrobugtracker/
H A Dsyntax.php368 …$ret = '<br /><br /><form class="dokumicrobugtracker__form" method="post" action="'.$_SERVER['REQU…
369 $ret .= formSecurityToken(false).
378 $ret .= '<option value="'.$severity.'" >'.$severity.'</option>';
380 $ret .= ' </select></p>'.
388 $ret .= '<p>'.$helper->getHTML().'</p>';}
391 $ret .= '<p><input class="button" type="submit" '.
395 return $ret;
/plugin/judge/helper/
H A Djdatetime.class.php233 $ret = strtr($format, array_combine($keys, $values));
238 ? $ret : self::convertNumbers($ret);
399 $ret = true;
402 $ret = false;
407 $ret = checkdate($month, $day, $year);
411 return $ret;
457 $ret = $months[$month - 1];
460 return ($shorten) ? self::substr($ret, 0, $len) : $ret;
/plugin/menupopup/
H A Dsyntax.php223 $ret = '';
226 …if (($perm >= AUTH_EDIT) && (is_writable($file))) $ret = '<div class="secedit">'.html_btn('edit', …
228 …$ret = '<div class="secedit">'.html_btn('create', $id, '', array('do' => 'edit'), 'post').'</div>';
230 return $ret;
/plugin/fedauth/classes/
H A Dfa_providerlist.class.php174 $ret = array();
176 $ret[$val] = $this->providers[$val];
178 return $ret;
187 $ret = array();
189 $ret[$val] = $this->providers[$val];
191 return $ret;
/plugin/dokutranslate/
H A Dadmin.php272 $ret = '';
294 $ret .= '<img src="'.$img.'" alt="'.$alt.'" />';
295 …$ret .= '<a href="'.wl('',$this->_get_opts(array('ns'=>$item['id'],'sectok'=>getSecurityToken())))…
296 $ret .= $base;
297 $ret .= '</a>';
299 return $ret;
/plugin/wysiwyg/
H A Daction.php53 $ret = load_wysiwyg($event->result);
55 $_SESSION['wysiwyg'] = $ret['pickle'];
57 $event->result = $ret['markup'];
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DBase32.php116 $ret = -1;
119 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 96);
122 $ret += (((0x31 - $src) & ($src - 0x38)) >> 8) & ($src - 23);
124 return $ret;
138 $ret = -1;
141 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 64);
144 $ret += (((0x31 - $src) & ($src - 0x38)) >> 8) & ($src - 23);
146 return $ret;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Color/
H A DColorConverter.php81 $ret = [3, $r, $g, $b];
83 $ret = [4, max(0, ord($c[1]) - 20), max(0, ord($c[2]) - 20), max(0, ord($c[3]) - 20), max(0, ord($c[4]) - 20)];
85 $ret = [1, min(255, ord($c[1]) + 32)];
88 $c = array_pad($ret, 6, 0);
111 $ret = [3, $r, $g, $b];
113 $ret = [4, min(100, ord($c[1]) + 20), min(100, ord($c[2]) + 20), min(100, ord($c[3]) + 20), min(100, ord($c[4]) + 20)];
115 $ret = [1, max(0, ord($c[1]) - 32)];
117 $c = array_pad($ret, 6, 0);
/plugin/linkmanager/
H A Dfunctions.php198 $ret = '';
199 …$ret .= '<a href="'.DOKU_BASE.'lib/plugins/'.getPluginName().'/exe/filemanager.php?ns='.idfilter($…
200 $ret .= $item['label'];
201 $ret .= '</a>';
202 return $ret;
/plugin/subpages/
H A Dsyntax.php269 $ret = '<ul class="subpages">';
272 $ret .= '<li>'.html_wikilink($page['linkid'], $page['title']).'</li>';
274 $ret .= '</ul>';
277 $ret = '';
280 return $ret;
/plugin/bez/mdl/
H A DEntity.php153 $ret = '<a href="'.$this->html_link_url().'">';
154 $ret .= $pre . $this->html_link_content() . $post;
155 $ret .= '</a>';
158 echo $ret;
160 return $ret;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Gif/
H A DColorTable.php48 $ret = "";
51 $ret .=
57 return $ret;
/plugin/dokutexit/
H A Dtexitrender.php317 $ret['id'] = $prefix . $this->_pageid . '.' . $ext;
318 $ret['file'] = mediaFN($ret['id']);
319 $ret['link'] = ml($ret['id']);
320 return $ret;
/plugin/swiftmail/Swift/Message/
H A DHeaders.php495 $ret = "";
517 $ret .= $append;
522 $ret .= ";";
539 $ret .= $append;
549 $ret .= $append;
554 return $ret;
565 $ret = "";
569 $ret .= ltrim($name, ".") . ": " . $this->getEncoded($name) . $this->LE;
571 return trim($ret);
/plugin/swiftmail/Swift/Cache/
H A DDisk.php106 $ret = fread($this->open[$key], $size);
107 if ($ret !== false)
109 return $ret;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DUriTemplate.php200 $ret = implode($joiner, $replacements);
201 if ($ret && $prefix) {
202 return $prefix . $ret;
205 return $ret;
/plugin/swiftmail/Swift/Connection/
H A DSendmail.php207 $ret = "";
216 …$line . " of a sendmail SMTP response. The response so far was:<br />[" . $ret . "]. It appears t…
218 $ret .= trim($tmp) . "\r\n";
222 return $ret = substr($ret, 0, -2);
/plugin/discussion/
H A Dadmin.php316 $ret = '';
324 …$ret = '<a href="'.wl($ID, $params).'" class="wikilink1">&lt;&lt; '.$this->getLang('newer').'</a>';
326 $ret .= ' | ';
328 ptln($ret, 10);
336 …$ret .= '<a href="'.wl($ID, $params).'" class="wikilink1">'.$this->getLang('older').' &gt;&gt;</a>…
337 ptln($ret, 10);

12345678910>>...15