Home
last modified time | relevance | path

Searched refs:ret (Results 226 – 250 of 351) sorted by last modified time

12345678910>>...15

/plugin/authg2fa/
H A DTokenHelper.php17 $ret = array();
20 return $ret;
31 $ret[$user] = $secret;
33 return $ret;
/plugin/nsexport/packer/ziphtml/
H A Drenderer.php114 $ret = '';
141 $ret .= '<img src="'.$src.'"';
142 $ret .= ' class="media'.$align.'"';
146 if($align === 'left') $ret .= ' align="left"';
149 $ret .= ' title="' . $title . '"';
150 $ret .= ' alt="' . $title .'"';
152 $ret .= ' alt=""';
161 $ret .= ' />';
178 $ret .= html_flashobject($src,$width,$height,
185 $ret .= $this->_xmlEntities($title);
[all …]
/plugin/authyubikey/lib/
H A DYubico.php226 $ret['otp'] = strtr($matches[3], "jxe.uidchtnbpygk", "cbdefghijklnrtuv");
229 $ret['otp'] = $matches[3];
231 $ret['password'] = $matches[2];
232 $ret['prefix'] = $matches[4];
233 $ret['ciphertext'] = $matches[5];
234 return $ret;
285 $ret = $this->parsePasswordOTP($token);
286 if (!$ret) {
290 'otp'=>$ret['otp'],
/plugin/publist/bib2tpl/lib/
H A DBibTex.php219 $ret = true;
225 return $ret;
460 $ret['entrytype'] = substr($ret['entrytype'], 1);
474 return $ret;
491 $ret = true;
512 if ($ret) {
537 return $ret;
989 $ret = str_replace("VON", $array['von'], $ret);
990 $ret = str_replace("LAST", $array['last'], $ret);
991 $ret = str_replace("JR", $array['jr'], $ret);
[all …]
/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/dokucrypt/
H A Dscript.js221 var ret="", key="", ctext="";
233 ret+=x.substring(pos,cur) + ctext;
236 ret+=x.substring(pos);
237 return(ret);
242 var ret="", key="", ctext="";
258 ret+=x.substring(pos,cur) + ctext;
261 ret+=x.substring(pos);
262 return(ret);
361 var v, i, ret, key;
374 ret="";
/plugin/news/
H A Dhelper.php167 $ret = io_readFile($file,$ser);
169 if(!$ret) return array();
170 return unserialize($ret);
172 return $ret;
/plugin/news/scripts/
H A DfeedData.php51 $ret = io_readFile($file,$ser);
53 if(!$ret) return array();
54 return unserialize($ret);
56 return $ret;
/plugin/datatemplate/syntax/
H A Dentry.php187 $ret = '';
190 $ret .= $this->_formatData($data['cols'][$key], $val[$i]);
193 $ret .= ', ';
197 $replacers['vals'][] = $ret;
/plugin/scrape/HTMLPurifier/Filter/
H A DExtractStyleBlocks.php
/plugin/scrape/HTMLPurifier/Printer/
H A DCSSDefinition.php
H A DConfigForm.php
H A DHTMLDefinition.php
/plugin/scrape/
H A DHTMLPurifier.standalone.php
/plugin/scrape/HTMLPurifier/
H A DPrinter.php
/plugin/scrape/HTMLPurifier/ConfigSchema/
H A DInterchangeBuilder.php
/plugin/ac/
H A Dac.php32 $ret = array();
42 $ret[] = $elem;
45 return $ret;
49 $ret = $this->fetch($type, $values);
50 return (count($ret) === 0) ? false : $ret[0];
/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/xssnipper/
H A Dsyntax.php181 $ret .= '<span><script>
193 return $ret;
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/GUI/
H A DHTML.php170 $ret = array();
174 $ret['failures'][] = $this->_prepareFailure($aFailure);
180 $ret['errors'][] = $this->_prepareErrors($aError);
191 return $ret;
197 $ret['testName'] = $test->getName();
228 return $ret;
233 $ret['testName'] = $passed->getName();
234 return $ret;
239 $ret['testName'] = $error->getName();
240 $ret['message'] = $error->toString();
[all …]
/plugin/freechat/phpfreechat/src/commands/
H A Dconnect.class.php61 $ret = $cmd->run($xml_reponse, $cmdp);
62 if ($ret)
/plugin/freechat/phpfreechat/src/containers/
H A Dfile.class.php136 $ret = array();
137 $ret["timestamp"] = array();
138 $ret["value"] = array();
155 return $ret;
174 return $ret;
183 $ret["value"][] = NULL;
186 return $ret;
202 $ret = array();
203 $ret["timestamp"] = array();
204 $ret["value"] = array();
[all …]
/plugin/freechat/phpfreechat/src/
H A Dpfccommand.class.php146 $ret = $ct->getOnlineNick($ct->decode($chan));
147 $otherids = array_merge($otherids, $ret['nickid']);
H A Dpfcglobalconfig.class.php902 $ret = copy_r( dirname(__FILE__).'/../themes/default',
904 if (!$ret)
918 $ret = copy_r( $this->theme_path.'/'.$this->theme,
920 if (!$ret)
H A Dpfctools.php179 $ret = copy($source, $dest);
181 return $ret;

12345678910>>...15