Home
last modified time | relevance | path

Searched refs:strtolower (Results 1 – 25 of 57) sorted by path

123

/dokuwiki/
H A Ddoku.php28 $ACT = trim(strtolower($_SERVER['HTTP_X_DOKUWIKI_DO']));
/dokuwiki/inc/Action/
H A DAbstractAction.php31 $this->actionname = strtolower(substr(strrchr(get_class($this), '\\'), 1));
/dokuwiki/inc/Action/Exception/
H A DActionException.php38 if (strtolower($INPUT->server->str('REQUEST_METHOD')) == 'post') {
/dokuwiki/inc/
H A DActionRouter.php183 $actionname = strtolower($actionname); // FIXME is this needed here? should we run a cleanup somewhere else?
H A DJpegMeta.php146 $lower_field = strtolower($field);
205 $lower_field = strtolower($field);
225 $lower_field = strtolower($field);
431 if(strlen($field) >= 8 && str_starts_with(strtolower($field), 'datetime')) {
H A DMailer.class.php53 $listid = strtolower(trim($listid, '.'));
153 $header = str_replace(' ', '-', ucwords(strtolower(str_replace('-', ' ', $header)))); // streamline casing
H A DPassHash.php373 $hash1 = strtolower(md5($key . md5($clear)));
573 $algo = strtolower($prefixalgo);
826 $algo = strtolower($algo);
H A DSafeFN.class.php81 return Unicode::toUtf8(self::safeToUnicode(strtolower($filename)));
H A Dactions.php64 $act = strtolower($act);
H A Dauth.php626 $user = PhpString::strtolower($user);
627 $groups = array_map([PhpString::class, 'strtolower'], $groups);
641 if (!$auth->isCaseSensitive()) $member = PhpString::strtolower($member);
733 $user = PhpString::strtolower($user);
734 $groups = array_map([PhpString::class, 'strtolower'], $groups);
760 $acl[1] = PhpString::strtolower($acl[1]);
790 $acl[1] = PhpString::strtolower($acl[1]);
H A Dconfutils.php40 $ext = strtolower(substr($file, $ext + 1));
242 $conf[strtolower($line[0])] = $line[1];
H A Dfetch.functions.php205 if (strtolower($cache) == 'nocache') return 0; //never cache
206 if (strtolower($cache) == 'recache') return $conf['cachetime']; //use standard cache
H A Dform.php71 if ($method !== false) $this->params['method'] = strtolower($method);
80 $this->params['method'] = strtolower($this->params['method']);
H A Dfulltext.php110 $text = PhpString::strtolower($evdata['text']);
397 PhpString::strtolower($title),
398 PhpString::strtolower($search)
738 PhpString::strtolower($query),
H A Dhtml.php126 $data['target'] = strtolower($data['target']);
127 $data['hid'] = strtolower($data['hid'] ?? '');
H A Dindexer.php379 return strtolower($name);
H A Dmedia.php1892 $local = getCacheName(strtolower($url), ".media.$ext");
H A Dpageutils.php142 $id = PhpString::strtolower($id);
/dokuwiki/inc/Extension/
H A DPluginController.php356 !str_ends_with(strtolower($component), '.php')
/dokuwiki/inc/HTTP/
H A DHTTPClient.php784 $key = strtolower($key);
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php210 $this->type = strtolower(substr(strrchr(get_class($this), '\\'), 1));
/dokuwiki/inc/Search/
H A DIndexer.php530 PhpString::strtolower($word) : strtolower($word);
/dokuwiki/inc/Subscriptions/
H A DSubscriptionSender.php34 $listid = strtolower(trim($listid, '.'));
/dokuwiki/inc/Ui/
H A DSearch.php481 if ($cleanedQuery === PhpString::strtolower($parsedQuery['query'])) {
/dokuwiki/inc/Utf8/
H A DPhpString.php249 * This is a unicode aware replacement for strtolower()
258 * @see strtolower()
260 public static function strtolower($string)
269 public static function strtolower($string) global() function in dokuwiki\\Utf8\\PhpString

123