| /dokuwiki/inc/ |
| H A D | utf8.php | 14 use dokuwiki\Utf8\PhpString; alias 84 dbg_deprecated(PhpString::class . '::basename()'); 85 return PhpString::basename($path, $suffix); 93 dbg_deprecated(PhpString::class . '::strlen()'); 94 return PhpString::strlen($str); 102 dbg_deprecated(PhpString::class . '::substr()'); 103 return PhpString::substr($str, $offset, $length); 111 dbg_deprecated(PhpString::class . '::substr_replace()'); 112 return PhpString::substr_replace($string, $replacement, $start, $length); 120 dbg_deprecated(PhpString::class . '::ltrim()'); [all …]
|
| H A D | fetch.functions.php | 4 use dokuwiki\Utf8\PhpString; alias 83 PhpString::basename($orig) 88 PhpString::basename($orig)
|
| H A D | fulltext.php | 14 use dokuwiki\Utf8\PhpString; alias 110 $text = PhpString::strtolower($evdata['text']); 396 $pos = PhpString::strpos( 397 PhpString::strtolower($title), 398 PhpString::strtolower($search) 470 $len = PhpString::strlen($text); 500 $utf8_idx = PhpString::strlen(substr($text, 0, $idx)); 501 $utf8_len = PhpString::strlen($str); 531 … $snippets[count($snippets) - 1] .= PhpString::substr($text, $append, $end - $append); 533 $snippets[] = PhpString::substr($text, $start, $end - $start); [all …]
|
| H A D | common.php | 14 use dokuwiki\Utf8\PhpString; alias 1141 PhpString::ucfirst(curNS($id)), 1142 PhpString::ucwords(curNS($id)), 1143 PhpString::strtoupper(curNS($id)), 1145 PhpString::ucfirst($file), 1146 PhpString::strtoupper($file), 1148 PhpString::ucfirst($page), 1149 PhpString::ucwords($page), 1150 PhpString::strtoupper($page), 1592 $max -= PhpString::strlen($keep); [all …]
|
| H A D | auth.php | 16 use dokuwiki\Utf8\PhpString; alias 652 $user = PhpString::strtolower($user); 653 $groups = array_map([PhpString::class, 'strtolower'], $groups); 667 if (!$auth->isCaseSensitive()) $member = PhpString::strtolower($member); 759 $user = PhpString::strtolower($user); 760 $groups = array_map([PhpString::class, 'strtolower'], $groups); 786 $acl[1] = PhpString::strtolower($acl[1]); 816 $acl[1] = PhpString::strtolower($acl[1]);
|
| H A D | search.php | 10 use dokuwiki\Utf8\PhpString; alias 223 $info['file'] = PhpString::basename($file); 570 $item['file'] = PhpString::basename($file);
|
| H A D | Mailer.class.php | 13 use dokuwiki\Utf8\PhpString; alias 86 $name = PhpString::basename($path); 578 if (PhpString::strlen($conf['title']) < 20) { 581 $prefix = '[' . PhpString::substr($conf['title'], 0, 20) . '...]';
|
| H A D | pageutils.php | 11 use dokuwiki\Utf8\PhpString; alias 56 PhpString::basename($INPUT->server->str('SCRIPT_FILENAME')); 142 $id = PhpString::strtolower($id);
|
| /dokuwiki/inc/Action/ |
| H A D | Sitemap.php | 7 use dokuwiki\Utf8\PhpString; alias 54 header('Content-Disposition: attachment; filename=' . PhpString::basename($sitemap));
|
| /dokuwiki/_test/tests/inc/ |
| H A D | utf8_substr.test.php | 24 … $this->assertEquals(\dokuwiki\Utf8\PhpString::substr($test[0],$test[1],$test[2]),$test[3]); 37 … $this->assertEquals(\dokuwiki\Utf8\PhpString::substr($test[0],$test[1],$test[2]),$test[3]);
|
| H A D | utf8_basename.test.php | 87 …$this->assertEquals($test[2], \dokuwiki\Utf8\PhpString::basename($test[0], $test[1]), "input: ('".…
|
| H A D | utf8_strtolower.test.php | 31 $this->assertEquals($expected, \dokuwiki\Utf8\PhpString::strtolower($input));
|
| /dokuwiki/inc/Ui/Media/ |
| H A D | DisplayRow.php | 5 use dokuwiki\Utf8\PhpString; alias 78 if (PhpString::strlen($d) > 250) $d = PhpString::substr($d, 0, 250) . '...';
|
| /dokuwiki/inc/parser/ |
| H A D | code.php | 4 use dokuwiki\Utf8\PhpString; alias 30 $filename = PhpString::basename($filename);
|
| H A D | xhtml.php | 7 use dokuwiki\Utf8\PhpString; alias 1702 $title = $this->_xmlEntities(PhpString::basename(noNS($src))); 1741 return $this->_xmlEntities($title ?: PhpString::basename(noNS($src))); 1764 $title = PhpString::basename(noNS($src)); 1787 $ret .= $this->_xmlEntities(PhpString::basename(noNS($src))); 1954 ? $this->_xmlEntities(PhpString::basename(noNS($file))) 2023 $title = $atts['title'] ?: $this->_xmlEntities(PhpString::basename(noNS($file)));
|
| H A D | metadata.php | 5 use dokuwiki\Utf8\PhpString; alias 101 $this->doc = PhpString::substr($this->doc, 0, self::ABSTRACT_MAX) . '…';
|
| /dokuwiki/inc/Remote/OpenApiDoc/ |
| H A D | OpenAPIGenerator.php | 8 use dokuwiki\Utf8\PhpString; alias 191 'tags' => [PhpString::ucwords($call->getCategory())], 335 $name = PhpString::ucwords($name);
|
| /dokuwiki/inc/ChangeLog/ |
| H A D | ChangeLogTrait.php | 5 use dokuwiki\Utf8\PhpString; alias 62 'sum' => PhpString::substr(str_replace($strip, '', $info['sum'] ?? ''), 0, 255),
|
| /dokuwiki/lib/plugins/extension/ |
| H A D | Installer.php | 7 use dokuwiki\Utf8\PhpString; alias 282 $file = $file ? PhpString::basename($file) : md5($url); 309 $file = PhpString::basename($match[1]); 432 $base = PhpString::basename($file);
|
| H A D | Extension.php | 6 use dokuwiki\Utf8\PhpString; alias 249 return $this->getTag('name', PhpString::ucwords($this->getBase() . ' ' . $this->getType()));
|
| /dokuwiki/bin/ |
| H A D | dwpage.php | 6 use dokuwiki\Utf8\PhpString; alias 217 $localfile = getcwd() . '/' . PhpString::basename($wiki_fn);
|
| /dokuwiki/lib/exe/ |
| H A D | js.php | 11 use dokuwiki\Utf8\PhpString; alias 189 $base = PhpString::basename($ifile);
|
| /dokuwiki/lib/plugins/authad/ |
| H A D | auth.php | 5 use dokuwiki\Utf8\PhpString; alias 311 $group = PhpString::strtolower(trim($group)); 336 $domain = PhpString::strtolower(trim($domain)); 337 $user = PhpString::strtolower(trim($user));
|
| /dokuwiki/inc/Remote/ |
| H A D | LegacyApiCore.php | 5 use dokuwiki\Utf8\PhpString; alias 262 'file' => PhpString::basename(mediaFN($file->id)),
|
| /dokuwiki/inc/Utf8/ |
| H A D | PhpString.php | 8 class PhpString class
|