Home
last modified time | relevance | path

Searched refs:return (Results 1 – 24 of 24) sorted by relevance

/dokuwiki/inc/
H A DInfo.php16 * @return array
21 $return = [
31 $return['date'] = $matches[2];
33 $return['type'] = 'rc';
35 $return['type'] = 'stable';
38 $return['hotfix'] = $matches[3];
44 [, $return['codename']] = sexplode(' ', $version, 2);
45 $return['codename'] = trim($return['codename'], ' "');
47 $return['versio
[all...]
H A Dsearch.php43 if (!$dh) return;
89 * return values for files are ignored
110 * @return bool
119 return search_universal($data, $base, $file, $type, $lvl, $opts);
136 * @return bool
151 return search_universal($data, $base, $file, $type, $lvl, $opts);
166 * @return bool
171 return search_universal($data, $base, $file, $type, $lvl, $opts);
191 * @return bool
198 if (empty($opts['depth'])) return tru
[all...]
H A Dtemplate.php30 * @return string
39 return DOKU_INC . 'lib/tpl/' . $conf['template'] . '/' . $file;
41 return DOKU_INC . 'lib/tpl/dokuwiki/' . $file;
50 * @return string
58 return DOKU_INC . 'lib/tpl/' . $tpl . '/';
67 * @return string
75 return DOKU_BASE . 'lib/tpl/' . $tpl . '/';
89 * @return bool true if any output
108 return !empty($html_output);
114 * @return boo
120 tpl_toc($return = false) global() argument
421 tpl_link($url, $name, $more = '', $return = false) global() argument
442 tpl_pagelink($id, $name = null, $return = false) global() argument
485 tpl_button($type, $return = false) global() argument
525 tpl_actionlink($type, $pre = '', $suf = '', $inner = '', $return = false) global() argument
639 tpl_action($type, $link = false, $wrapper = false, $return = false, $pre = '', $suf = '', $inner = '') global() argument
725 tpl_breadcrumbs($sep = null, $return = false) global() argument
773 tpl_youarehere($sep = null, $return = false) global() argument
1539 tpl_license($img = 'badge', $imgonly = false, $return = false, $wrap = true) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSource.php77 return md5(serialize($this->data));
83 return $this->data['child'][$namespace][$tag];
86 return null;
91 return $this->item->get_base($element);
96 return $this->item->sanitize($data, $type, $base);
101 return $this->item;
106 if ($return = $this->get_source_tags(\SimplePie\SimplePie::NAMESPACE_ATOM_10, 'title')) {
107 return $this->sanitize($return[0]['data'], $this->registry->call(Misc::class, 'atom_10_construct_type', [$return[
[all...]
H A DSimplePie.php631 * @var integer Stores the number of items to return per-feed with multifeeds.
729 return md5(serialize($this->data));
799 * @return bool True on success, false on failure
807 return true;
809 return false;
887 * @return void
951 * @return string A filename (i.e. hash, without path and without extension).
974 return $this->cache_namefilter->filter($url);
1027 * @return Registry
1031 return
[all...]
H A DItem.php115 * @return string
119 return md5(serialize($this->data));
138 * See {@see \SimplePie\SimplePie::get_feed_tags()} for a description of the return value
144 * @return array
149 return $this->data['child'][$namespace][$tag];
152 return null;
160 * @return string
165 return $element['xml_base'];
169 return $link;
171 return
[all...]
H A DMisc.php81 return $time;
88 return false;
90 return $iri->get_uri();
99 * @return array
105 $return = [];
109 $return[$i]['tag'] = $realname;
110 $return[$i]['full'] = $matches[$i][0][0];
111 $return[$i]['offset'] = $matches[$i][0][1];
113 $return[$i]['self_closing'] = true;
115 $return[
[all...]
H A DIRI.php139 * @return string
143 return $this->get_iri();
172 * @return mixed
186 $return = $this->{"get_$name"}();
188 $return = $this->$name;
193 $return = $this->$prop;
198 $return = $this->$prop;
201 $return = null;
204 if ($return === null && isset($this->normalization[$this->scheme][$name])) {
205 return
[all...]
H A DParser.php95 return $this->parse_microformats($data, $url);
135 return false;
139 $return = true;
169 $return = false;
175 $return = false;
182 return $return;
231 return false;
234 return true;
239 return
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/DataType/
H A DValue.php33 return 'boolean';
36 return 'int';
39 return 'double';
44 return 'date';
47 return 'base64';
53 return 'struct';
56 return 'string';
61 return 'struct';
63 return 'array';
72 return '<boolea
[all...]
/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DIntrospectionServer.php32 'Returns an array describing the return type and required parameters of a method'
70 return new Error(-32601,
79 return new Error(-32602, 'server error. wrong number of method parameters');
120 return new Error(-32602, 'server error. invalid method parameters');
124 return parent::call($methodname, $argsbackup);
130 return new Error(-32601, 'server error. requested method "' . $method . '" not specified.');
134 $return = [];
138 $return[] = 'string';
142 $return[] = 42;
145 $return[]
[all...]
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DTar.php97 return $result;
101 * Read the contents of a TAR archive and return each entry using yield
153 * @return FileInfo[]
221 return $extracted;
362 return;
404 return gzencode($this->memory, $this->complevel);
407 return bzcompress($this->memory);
409 return $this->memory;
437 * @return string
442 return
[all...]
/dokuwiki/lib/plugins/extension/
H A Daction.php18 * @return void
36 if ($event->data != 'plugin_extension') return;
52 return;
66 return;
72 $return = [
79 echo json_encode($return, JSON_THROW_ON_ERROR);
/dokuwiki/vendor/splitbrain/slika/src/
H A DImageMagickAdapter.php31 return $this;
56 return $this;
75 return $this;
100 return $this;
123 $return = 0;
124 exec($cmd, $output, $return);
126 if ($return !== 0) {
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DRedis.php132 * @return bool Successfulness
144 return $response;
150 * @return array Data for SimplePie::$data
157 return unserialize($data);
159 return false;
165 * @return int Timestamp
172 return time();
175 return false;
181 * @return bool Success status
188 $return
[all...]
/dokuwiki/lib/plugins/authad/
H A Dauth.php99 return;
136 * @return bool
144 return parent::canDo($cap);
157 * @return bool
165 ) return true;
168 if (!$adldap) return false;
171 return $adldap->authenticate($this->getUserName($user), $pass);
174 return false;
201 * @return array|false
210 if (!$adldap) return fals
[all...]
/dokuwiki/vendor/simplepie/simplepie/idn/
H A Didna_convert.class.php104 return $this->set_parameter($options);
106 return true;
122 * @return boolean true on success, false otherwise
141 return false;
152 return false;
155 return true;
162 * @return string Decoded Domain name (UTF-8 or UCS-4)
176 return false;
188 return false;
207 $return
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Content/Type/
H A DSniffer.php84 * @return string Actual Content-Type
94 return $this->text_or_binary();
106 return $this->unknown();
110 return $official;
112 if ($return = $this->image()) {
113 return $return;
116 return $official;
118 return $this->feed_or_html();
121 return
[all...]
/dokuwiki/inc/parser/
H A Dxhtml.php64 * @return string A marker class for the starting HTML element
89 return 'sectionedit' . $data['secid'];
102 return;
106 return;
119 * @return string always 'xhtml'
123 return 'xhtml';
217 * @param bool $returnonly whether to return html or write to doc attribute
218 * @return void|string writes to doc attribute or returns html depends on $returnonly
224 if (blank($text)) return; //skip empty headlines
263 return
1119 internalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null, $return = false) global() argument
1192 externalmedia($src, $title = null, $align = null, $width = null, $height = null, $cache = null, $linking = null, $return = false) global() argument
[all...]
/dokuwiki/conf/
H A Dmysql.conf.php.example73 /* This statement should return a table with exact one row containing
107 /* This statement should return a table containing all user login names
176 /* This statement should return the database index of a given user name.
242 /* This statement should return the database index of a given group name.
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DREADME.md
H A DLICENSE
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md31 - Item::get_date(): fix return type on unparsable date by @jtojnar in [#753](https://github.com/simplepie/simplepie/pull/753)
187 * Fixed inline documentation for return value types for accuracy. [#570](https://github.com/simplepie/simplepie/pull/570)
211 * `$item->get_id()` can now be forced to return the supplied ID instead of generating a new one. [#509](https://github.com/simplepie/simplepie/pull/509)
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php573 * @return string
578 return GESHI_VERSION;
585 * @return string|false An error message if there has been an error, else false
600 return "<br /><strong>GeSHi Error:</strong> $msg (code {$this->error})<br />";
602 return false;
609 * @return string The name for the current language
614 return $this->language_data['LANG_NAME'] . ' (Unknown Language)';
616 return $this->language_data['LANG_NAME'];
640 return $language;
668 return;
4743 geshi_highlight($string, $language, $path = null, $return = false) global() argument
[all...]