/dokuwiki/lib/plugins/authad/adLDAP/collections/ |
H A D | adLDAPCollection.php | 90 if (strtolower($keyAttr) == strtolower($attribute)) { 91 if ($this->info[0][strtolower($attribute)]['count'] == 1) { 92 return $this->info[0][strtolower($attribute)][0]; 96 foreach ($this->info[0][strtolower($attribute)] as $key => $value) { 129 if (strtolower($keyAttr) == strtolower($attribute)) {
|
/dokuwiki/lib/plugins/config/core/Setting/ |
H A D | SettingOnoff.php | 19 if (strtolower($value) === 'false') return 0; 20 if (strtolower($value) === 'off') return 0;
|
/dokuwiki/_test/tests/inc/ |
H A D | utf8_strtolower.test.php | 31 $this->assertEquals($expected, \dokuwiki\Utf8\PhpString::strtolower($input));
|
/dokuwiki/inc/Action/ |
H A D | AbstractAction.php | 31 $this->actionname = strtolower((new \ReflectionClass($this))->getShortName());
|
/dokuwiki/vendor/simplepie/simplepie/src/Content/Type/ |
H A D | Sniffer.php | 101 $official = trim(strtolower($official)); 153 if (strtolower(substr($this->file->body, $ws, 14)) === '<!doctype html' 154 || strtolower(substr($this->file->body, $ws, 5)) === '<html' 155 || strtolower(substr($this->file->body, $ws, 7)) === '<script') {
|
/dokuwiki/inc/Action/Exception/ |
H A D | ActionException.php | 38 if (strtolower($INPUT->server->str('REQUEST_METHOD')) == 'post') {
|
/dokuwiki/inc/ |
H A D | actions.php | 64 $act = strtolower($act);
|
H A D | fetch.functions.php | 205 if (strtolower($cache) == 'nocache') return 0; //never cache 206 if (strtolower($cache) == 'recache') return $conf['cachetime']; //use standard cache
|
H A D | SafeFN.class.php | 81 return Unicode::toUtf8(self::safeToUnicode(strtolower($filename)));
|
H A D | confutils.php | 40 $ext = strtolower(substr($file, $ext + 1)); 242 $conf[strtolower($line[0])] = $line[1];
|
/dokuwiki/vendor/simplepie/simplepie/src/Parse/ |
H A D | Date.php | 607 if (strtolower(substr($method, 0, 5)) === 'date_') { 838 $month = $this->month[strtolower($match[3])]; 909 $month = $this->month[strtolower($match[3])]; 964 $month = $this->month[strtolower($match[2])];
|
/dokuwiki/vendor/simplepie/simplepie/src/ |
H A D | Misc.php | 123 …$return[$i]['attribs'][strtolower($attribs[$j][1])]['data'] = Misc::entities_decode(end($attribs[$… 135 $key = strtolower($key); 196 } elseif ($http === 3 && strtolower($parsed['scheme']) === 'http') { 198 } elseif ($http === 4 && strtolower($parsed['scheme']) === 'http') { 381 switch (strtolower(preg_replace('/(?:[^a-zA-Z0-9]+|([^0-9])0+)/', '\1', $charset))) { 1805 if (isset($attribs['']['mode']) && strtolower(trim($attribs['']['mode'])) === 'base64') { 1811 switch (strtolower(trim($attribs['']['type']))) { 1835 switch (strtolower(trim($attribs['']['type']))) { 1855 $type = strtolower(trim($attribs['']['type']));
|
H A D | Locator.php | 211 …y_unique($this->registry->call(Misc::class, 'space_separated_tokens', [strtolower($link->getAttrib… 223 …n_array('stylesheet', $rel) && $link->hasAttribute('type') && in_array(strtolower($this->registry-… 314 $rel_values = explode(' ', strtolower($link->getAttribute('rel'))); 329 if (in_array(strtolower(strrchr($value, '.')), ['.rss', '.rdf', '.atom', '.xml'])) {
|
H A D | File.php | 147 if (isset($url_parts['scheme']) && strtolower($url_parts['scheme']) === 'https') { 208 … switch (strtolower(trim($this->headers['content-encoding'], "\x09\x0A\x0D\x20"))) {
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
H A D | AsymmetricKey.php | 233 $format = strtolower($type); 312 $type = strtolower($type); 346 self::$plugins[static::ALGORITHM][$format][strtolower($name)] = $type; 383 self::$plugins[static::ALGORITHM]['Keys'][strtolower($shortname)] = $fullname; 385 self::$invisiblePlugins[static::ALGORITHM][] = strtolower($shortname);
|
/dokuwiki/inc/Remote/ |
H A D | XmlRpcServer.php | 39 $contentType = strtolower($contentType); // mime types are case-insensitive
|
H A D | JsonRpcServer.php | 48 $contentType = strtolower($contentType); // mime types are case-insensitive
|
/dokuwiki/inc/Subscriptions/ |
H A D | SubscriptionSender.php | 34 $listid = strtolower(trim($listid, '.'));
|
/dokuwiki/inc/Utf8/ |
H A D | PhpString.php | 258 * @see strtolower() 260 public static function strtolower($string) function in dokuwiki\\Utf8\\PhpString
|
/dokuwiki/lib/plugins/authad/ |
H A D | auth.php | 239 if (isset($result[0][strtolower($field)])) { 240 $info[$field] = $result[0][strtolower($field)][0]; 311 $group = PhpString::strtolower(trim($group)); 336 $domain = PhpString::strtolower(trim($domain)); 337 $user = PhpString::strtolower(trim($user));
|
/dokuwiki/ |
H A D | doku.php | 28 $ACT = trim(strtolower($_SERVER['HTTP_X_DOKUWIKI_DO']));
|
/dokuwiki/vendor/simplepie/simplepie/src/Net/ |
H A D | IPv6.php | 224 if (dechex($value) !== strtolower($ipv6_part) || $value < 0 || $value > 0xFFFF) {
|
/dokuwiki/inc/Menu/Item/ |
H A D | AbstractItem.php | 210 $this->type = strtolower(substr(strrchr(get_class($this), '\\'), 1));
|
/dokuwiki/.github/ |
H A D | release.php | 88 $next['codename'] = ucwords(strtolower($next['codename']));
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/ |
H A D | PrivateKey.php | 110 …return $shortFormat == 'SSH2' ? Strings::packSSH2('ss', 'ssh-' . strtolower($this->getCurve()), $r… 143 …return $shortFormat == 'SSH2' ? Strings::packSSH2('ss', 'ssh-' . strtolower($this->getCurve()), $R…
|