Home
last modified time | relevance | path

Searched refs:ret (Results 51 – 75 of 351) sorted by relevance

12345678910>>...15

/plugin/sortablejs/
H A Dsyntax.php110 $ret = "";
135 $ret .= " threephase";
138 $ret .= " col_".$c."_nosort";
141 $ret .= " col_".$c."_numeric";
144 $ret .= " col_".$c."_date";
148 $ret .= " col_".$c."_alpha";
151 $ret .= ' sort'.$opt;
154 $ret .= ' sortbottom_'.$c;
158 return $ret;
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/src/
H A DBase64DotSlash.php49 $ret = -1;
52 $ret += (((0x2d - $src) & ($src - 0x30)) >> 8) & ($src - 45);
55 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 62);
58 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 68);
61 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src + 7);
63 return $ret;
H A DBase64DotSlashOrdered.php49 $ret = -1;
52 $ret += (((0x2d - $src) & ($src - 0x3a)) >> 8) & ($src - 45);
55 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 52);
58 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 58);
60 return $ret;
/plugin/swiftmail/Swift/
H A DFile.php140 $ret = fgets($this->handle);
142 else $ret = false;
146 return $ret;
155 $ret = "";
157 while (false !== $chunk = $this->read(8192, false)) $ret .= $chunk;
159 return $ret;
173 $ret = fread($this->handle, $bytes);
175 else $ret = false;
179 return $ret;
/plugin/etherpadlite/action/
H A Detherpadlite.php100 print $json->encode($ret);
190 return $ret;
209 $ret["readpw"] = "***";
212 $ret["readpw"] = "";
215 $ret["writepw"] = "***";
218 $ret["writepw"] = "";
220 $ret["name"] = "$pageid";
231 $ret["isOwner"] = $isOwner;
235 return $ret;
407 $ret = $this->getPageInfo();
[all …]
/plugin/likeit/
H A Dscript.js24 ret = ajaxedit_parse(data);
25 if (ajaxedit_checkResponse(ret)) {
26 if(ret.list && ret.count) {
27 $container.find('.plugin_likeit.list').html(ret.list);
28 $container.find('.plugin_likeit.count').html(ret.count);
/plugin/directions/syntax/
H A Dgraph.php38 $ret .= '<img src="'.$img.'" class="media'.$input['align'].'" alt=""';
39 if($input['width']) $ret .= ' width="'.$input['width'].'"';
40 if($input['height']) $ret .= ' height="'.$input['height'].'"';
41 if($input['align'] == 'right') $ret .= ' align="right"';
42 if($input['align'] == 'left') $ret .= ' align="left"';
43 $ret .= '/>';
45 return $ret;
/plugin/settingstree/settings/
H A Dsettingslevel.class.php123 $ret = array();
126 $ret[$this->path] = $v;
129 $ret = array_merge($ret,$child->getValuesRecursive());
131 return $ret;
134 $ret = array();
136 $ret[$key] = $this->getCurrent($key);
138 return $ret;
211 $ret .= $setting->showHtml();
216 return $ret;
287 $ret = array();
[all …]
H A Dsettingshierarchy.class.php37 if (!($ret = @$lang[$conf['lang']][$key])){
38 if (!($ret = @$lang['en'][$key])){
41 …if (!$config_plugin && ($ret = $this->_getLang($key,true)) === null){ // check if it a key for con…
65 …if (($ret = $this->_getLang($match[1],$config_plugin)) === "{msgid:{$key}}"); // try to get the 'k…
70 return $ret;
201 $ret .= '<ul class="settings_hierarchy_history">';
202 …$ret .= "<li class='title'>".sprintf(settingshierarchy::$helper->getLang("settings_for_%s"),$key).…
206 …$ret .= "<li><b class='".($p ? 'protect':'').' '.($v ? 'value':'')."'>".settingshierarchy::$helper…
208 …$ret .= ($p ? "<span class='_p'>".settingshierarchy::$helper->getLang('became_protected').".</span…
212 $ret .= "<li><b>".settingshierarchy::$helper->getLang("this_is_extended")."</b>";
[all …]
/plugin/poll/
H A Dsyntax.php126 $ret = '<table class="blind">';
133 $ret .= '<tr><td>'.$options[$i].'</td><td><div class="poll_bar">';
134 … if ($percent) $ret .= '<div class="poll_full" style="width:'.($percent*2).'px">&nbsp;</div>';
135 $ret .= '</div></td><td class="rightalign">'.$percent.'%</td>'.
138 $ret .= '</table>';
140 return $ret;
148 …$ret = '<form id="poll__form" method="post" action="'.script().'" accept-charset="'.$lang['encodin…
154 $ret.= '<label class="simple" for="poll__option'.$i.'">'.
158 $ret .= '<input class="button" type="submit" '.
162 return $ret;
/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/preservefilenames/
H A Dcommon.php64 $ret = "Content-Disposition: $type;";
68 $ret .= ' filename="' . $filename . '";';
71 $ret .= " filename*=UTF-8''" . rawurlencode($filename) . ';';
80 $ret .= ' filename="' . $filename . '"';
92 $ret .= ' filename="' . rawurlencode($filename) . '";';
95 return $ret;
/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/src/Jms/Handler/
H A DBaseTypesHandler.php40 $ret = array();
42 $ret[] = $navigator->accept($v, $newType, $context)->data;
45 return $visitor->getDocument()->createTextNode(implode(" ", $ret));
54 $ret = array();
57 $ret[] = $navigator->accept($v, $newType, $context);
59 return $ret;
/plugin/indexmenu2/syntax/
H A Dindexmenu.php370 $ret = array();
384 $ret[] = "<ul ".(!$opts['js']&&!$opts['navigation']?"style=\"display: none\""
392 $ret[] = "<ul>";
397 $ret[] = "</ul>";
401 $ret[] = "</li>";
403 return join("\n",$ret);
431 $ret = true;
435 if ($opts['level']!=0 && $lvl >= $opts['level']) $ret=false;
436 if ($opts['nons']) return $ret;
534 ,'open' => $ret );
[all …]
/plugin/nroff/
H A Drenderer.php936 $ret = '';
937 $ret .= $link['pre'];
952 return $ret;
963 $ret = '';
969 $ret .= ' class="media'.$align.'"';
987 $ret .= ' alt=""';
990 $ret .= ' alt=""';
999 $ret .= ' />';
1006 $ret .= '>'.DOKU_LF;
1015 $ret .= '</object>'.DOKU_LF;
[all …]
/plugin/wysiwyg/
H A Dhider.php36 $ret = array();
37 $ret['markup'] = $markup;
38 $ret['pickle'] = $allPickled;
39 return $ret;
43 …$ret = preg_replace("/(?<=<wysiwyg\\s".$name.") >>>>>".wysiwyg_GUID.".*?".wysiwyg_GUID."<<<<< (?=\…
44 return $ret;
/plugin/userhomepage/
H A Dhelper.php79 $ret = $this->getConf('userlink_classes');
82 $ret .= " ".$class;
84 if ($ret != null) { $ret .= " "; }
86 $ret = str_replace(" wikilink1", "", $ret);
88 $ret .= "wikilink1";
90 $ret .= "wikilink2";
92 return $ret;
134 * @param bool $ret return content instead of printing it
137 function getPageInfo($ret = false) { argument
180 if($ret) {
/plugin/slideshow/
H A Dinclude_test.php3 $ret ='<draw_text><text x="0" y="0" width="50" rotation="0" align="left" size="60" color="000000" a… variable
4 $ret .= $conf['lang'];
5 $ret .= '</text></draw_text>';
6 return $ret;
/plugin/issuetracker/
H A Dsyntax.php809 $ret = '<div>'.NL.
904 $ret = $a_lang.$usr.$ret.$head.$body;
905 return $ret;
1288 $ret .= '</tr>'.NL.
1304 $ret .= '</tr><tr>'.NL;
1314 $ret .= '</tr><tr>'.NL;
1343 $ret .= '</tr>'.NL.
1353 $ret .= '</tr>'.NL.
1366 $ret .= '</tr>'.NL.
1385 $ret = str_ireplace("%%DOKU_BASE%%",DOKU_BASE,$ret);
[all …]
/plugin/tagadd/
H A Dscript.js31 ret = ajaxedit_parse(data);
32 if(ajaxedit_checkResponse(ret)) {
35 jQuery("div.tags span").html(ret.links);
38 jQuery('div.page').append('<div class="tags"><span>'+ret.links+'</span></div>');
81 ret = ajaxedit_parse(data);
82 if(ajaxedit_checkResponse(ret)) {
84 jQuery("#tagadd__dialog_div").html(ret.form);
/plugin/ajaxedit/
H A Dhelper.php34 $ret = array(
40 echo json_encode($ret);
45 $ret = array(
51 echo json_encode($ret);
101 $ret = array(
108 $ret = array_merge($ret,$data);
109 echo json_encode($ret);
/plugin/semanticdata/syntax/
H A Dentry.php126 $ret = '';
148 $ret .= '<dd class="' . hsc($key) . '">';
150 if($i < $cnt - 1) $ret .= '<span class="sep">, </span>';
151 $ret .= '</dd>';
154 $ret .= '<dd class="' . hsc($key) . '">'.
158 $ret .= '</dl></div>';
159 $R->doc .= $ret;
327 $ret .= ' #' . $field[2];
329 $ret .= DOKU_LF;
331 $ret .= '----';
[all …]
/plugin/bez/syntax/
H A Dnav.php68 $ret = '<li>';
69 if ($cur_action == $action) $ret .= '<strong>';
70 $ret .= '<a href="' . $bez_action->url($action) . '">' . $label . '</a>';
71 if ($cur_action == $action) $ret .= '</strong>';
72 $ret .= '</li>';
74 return $ret;
/plugin/data-au/syntax/
H A Dentry.php156 $ret = '';
177 $ret .= '<dd class="' . $class_name . '">';
188 $ret .= '<span class="sep">, </span>';
199 $ret .= '</dd>';
201 $ret .= '</dl></div>';
202 $R->doc .= $ret;
468 $ret .= $field[1];
470 $ret .= ' # ' . $field[2];
472 $ret .= DOKU_LF;
474 $ret .= "----\n";
[all …]
/plugin/svgembed/
H A Dsyntax.php199 $ret = '';
265 $ret .= '<span style="display:block';
270 $ret .= ";width:{$data['width']}{$spanunits}";
273 $ret .= ";height:{$data['height']}{$spanunits}";
276 $ret .= ";{$styleextra}";
278 $ret .= '">';
315 $ret .= "<img id=\"" . $svgembed_md5 . "\" src={$properties} />";
323 …$ret .= '<div class="svgprintbutton_table"><button type="submit" title="Print SVG" onClick="svgemb…
330 $ret .= '</span>';
332 $ret .= '<br />';
[all …]

12345678910>>...15