Home
last modified time | relevance | path

Searched refs:base (Results 1 – 25 of 49) sorted by relevance

12

/dokuwiki/inc/
H A Dsearch.php17 * This function recurses into a given base directory
21 * @param string $base Where to start the search
24 * @param string $dir Current directory beyond $base
30 function search(&$data, $base, $func, $opts, $dir = '', $lvl = 1, $sort = 'natural')
37 if ($base == '' || $base == '/') {
38 throw new RuntimeException('No valid $base passed to search() - possible misconfiguration or bug');
42 $dh = @opendir($base . '/' . $dir);
46 if (is_dir($base . '/' . $dir . '/' . $file)) {
51 $filepaths[] = $base
27 search(& $data, $base, $func, $opts, $dir = '', $lvl = 1, $sort = 'natural') global() argument
108 search_qsearch(& $data, $base, $file, $type, $lvl, $opts) global() argument
133 search_index(& $data, $base, $file, $type, $lvl, $opts) global() argument
162 search_namespaces(& $data, $base, $file, $type, $lvl, $opts) global() argument
188 search_media(& $data, $base, $file, $type, $lvl, $opts) global() argument
255 search_mediafiles(& $data, $base, $file, $type, $lvl, $opts) global() argument
302 search_list(& $data, $base, $file, $type, $lvl, $opts) global() argument
333 search_pagename(& $data, $base, $file, $type, $lvl, $opts) global() argument
371 search_allpages(& $data, $base, $file, $type, $lvl, $opts) global() argument
487 search_universal(& $data, $base, $file, $type, $lvl, $opts) global() argument
[all...]
/dokuwiki/inc/Ui/
H A DIndex.php82 $base = ':' . $item['id'];
83 $base = substr($base, strrpos($base, ':') + 1);
88 $html .= $base;
/dokuwiki/lib/tpl/dokuwiki/images/
H A Dpagetools-build.php43 $base = $i*90; variable
48 imagecopy($DST,$IN, 0,$base, 0,0, 30,30);
54 imagecopy($DST,$IN, 0,$base+45, 0,0, 30,30);
58 imagefilledrectangle($DST, 0,$base+45, 30,$base+45+30, $C_active);
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php25 private $base;
78 $this->base = $id;
81 $this->base = substr($id, 9);
181 return $this->base != $this->getBase();
198 return $plugin_controller->isEnabled($this->base);
246 return $this->base;
257 if (!empty($this->localInfo['base'])) return $this->localInfo['base'];
258 return $this->base;
270 return $this->base;
18 private $base; global() variable in helper_plugin_extension_extension
986 installArchive($file, $overwrite = false, $base = '') global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php257 * Returns false if $base is not absolute, otherwise an IRI.
259 * @param IRI|string $base (Absolute) Base IRI
263 public static function absolutize($base, $relative) argument
273 if (!($base instanceof IRI)) {
274 $base = new IRI($base);
276 if ($base->scheme !== null && $base->is_valid()) {
280 $target->scheme = $base->scheme;
283 $target->scheme = $base
[all...]
H A DLocator.php65 public $base; variable in SimplePie\\Locator
170 $this->base = $this->http_base;
171 $elements = $this->dom->getElementsByTagName('base');
174 $base = $this->registry->call(Misc::class, 'absolutize_url', [trim($element->getAttribute('href')), $this->http_base]);
175 if ($base === false) {
178 $this->base = $base;
216 $href = $this->registry->call(Misc::class, 'absolutize_url', [trim($link->getAttribute('href')), $this->base]);
254 $href = $this->registry->call(Misc::class, 'absolutize_url', [trim($link->getAttribute('href')), $this->base]);
303 [trim($link->getAttribute('href')), $this->base]
[all...]
/dokuwiki/lib/plugins/logviewer/
H A Dplugin.info.txt1 base logviewer
/dokuwiki/lib/plugins/acl/
H A Dplugin.info.txt1 base acl
/dokuwiki/lib/plugins/usermanager/
H A Dplugin.info.txt1 base usermanager
/dokuwiki/lib/plugins/info/
H A Dplugin.info.txt1 base info
/dokuwiki/lib/tpl/dokuwiki/
H A Dtemplate.info.txt1 base dokuwiki
/dokuwiki/lib/plugins/config/
H A Dplugin.info.txt1 base config
/dokuwiki/lib/plugins/styling/
H A Dplugin.info.txt1 base styling
/dokuwiki/lib/plugins/authpdo/
H A Dplugin.info.txt1 base authpdo
/dokuwiki/lib/plugins/authldap/
H A Dplugin.info.txt1 base authldap
H A Dauth.php196 $base = $this->makeFilter($this->getConf('usertree'), $info);
205 $this->debug('LDAP search at: ' . hsc($base . ' ' . $filter), 0, __LINE__, __FILE__);
206 $sr = $this->ldapSearch($this->con, $base, $filter, $this->getConf('userscope'), $this->getConf('attributes'));
274 $base = $this->makeFilter($this->getConf('grouptree'), $user_result);
278 $base,
284 $this->debug('LDAP search at: ' . hsc($base . ' ' . $filter), 0, __LINE__, __FILE__);
641 * @param string $scope can be 'base', 'one' or 'sub'
659 if ($scope == 'base') {
/dokuwiki/lib/plugins/extension/
H A Dplugin.info.txt1 base extension
/dokuwiki/lib/plugins/authplain/
H A Dplugin.info.txt1 base authplain
/dokuwiki/lib/plugins/authad/
H A Dplugin.info.txt1 base authad
/dokuwiki/lib/plugins/popularity/
H A Dplugin.info.txt1 base popularity
H A Dhelper.php283 * @param string $base Base usually $conf['datadir']
284 * @param string $file current file or directory relative to $base
290 public function searchCountCallback(&$data, $base, $file, $type, $lvl, $opts)
301 $size = filesize($base . '/' . $file);
302 $date = filemtime($base . '/' . $file);
289 searchCountCallback(& $data, $base, $file, $type, $lvl, $opts) global() argument
/dokuwiki/lib/plugins/revert/
H A Dplugin.info.txt1 base revert
/dokuwiki/lib/plugins/safefnrecode/
H A Dplugin.info.txt1 base safefnrecode
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php318 $base = array_pop($parts); // keep filename itself
320 $base = '';
323 if ($base) {
324 $filename .= "/$base";
/dokuwiki/lib/exe/
H A Djs.php188 $base = PhpString::basename($ifile);
189 if (array_key_exists($base, $loaded) && $loaded[$base] === true) {
193 $loaded[$base] = true;

12