Home
last modified time | relevance | path

Searched refs:strtolower (Results 26 – 50 of 57) sorted by last modified time

123

/dokuwiki/inc/Action/
H A DAbstractAction.php31 $this->actionname = strtolower(substr(strrchr(get_class($this), '\\'), 1));
/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
/dokuwiki/inc/
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 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 DSafeFN.class.php81 return Unicode::toUtf8(self::safeToUnicode(strtolower($filename)));
H A Dmedia.php1892 $local = getCacheName(strtolower($url), ".media.$ext");
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'] ?? '');
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DHash.php288 $this->hashParam = $hash = strtolower($hash);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1435 ->withHash(preg_replace('#^ecdsa-with-#', '', strtolower($signatureAlgorithm)));
1448 ->withHash(preg_replace('#^id-dsa-with-#', '', strtolower($signatureAlgorithm)));
1545 switch (strtolower($propName)) {
1852 $attr['value'] = strtolower(trim($v));
1867 return strtolower(Strings::bin2hex(pack('N', $hash)));
3059 if (is_string($date) && strtolower($date) === 'lifetime') {
/dokuwiki/vendor/simplepie/simplepie/src/
H A DEnclosure.php1060 $type = strtolower($this->type);
1072 switch (strtolower($extension)) {
H A DIRI.php783 $this->scheme = strtolower($scheme);
901 $ihost[$position] = strtolower($ihost[$position]);
H A DItem.php871 if (!isset($links[0]['attribs']['']['isPermaLink']) || strtolower(trim($links[0]['attribs']['']['isPermaLink'])) === 'true') {
1322 if (isset($restriction['data']) && strtolower($restriction['data']) === 'yes') {
1348 if (isset($restriction['data']) && strtolower($restriction['data']) === 'yes') {
H A DLocator.php212 $rel = array_unique($this->registry->call(Misc::class, 'space_separated_tokens', [strtolower($link->getAttribute('rel'))]));
224 if (!in_array($href, $done) && in_array('feed', $rel) || (in_array('alternate', $rel) && !in_array('stylesheet', $rel) && $link->hasAttribute('type') && in_array(strtolower($this->registry->call(Misc::class, 'parse_mime', [$link->getAttribute('type')])), ['text/html', 'application/rss+xml', 'application/atom+xml'])) && !isset($feeds[$href])) {
315 $rel_values = explode(' ', strtolower($link->getAttribute('rel')));
330 if (in_array(strtolower(strrchr($value, '.')), ['.rss', '.rdf', '.atom', '.xml'])) {
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php638 $language = strtolower($language);
785 $language = strtolower($language);
1449 $extension = strtolower($extension);
1900 $this->encoding = strtolower($encoding);
3225 return strtolower($instr);
3255 // Old system: strtolower
3256 //$keyword = ( $this->language_data['CASE_SENSITIVE'][$group] ) ? $keyword : strtolower($keyword);
3279 str_replace('+', '%20', urlencode($this->hsc(strtolower($word)))),
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG495 * Keyword Linking now uses considerably less strtolower calls (milian)
/dokuwiki/inc/parser/
H A Dhandler.php848 [$link[0], $link[1], strtolower($interwiki[0]), $interwiki[1]],
/dokuwiki/
H A Dinstall.php324 $d['superuser'] = isset($d['superuser']) ? strtolower($d['superuser']) : "";
/dokuwiki/lib/exe/
H A Dcss.php391 $exts[] = strtolower($match[1]);

123