/plugin/bez/renderer/ |
H A D | xhtmlmail.php | 58 $title = $this->_xmlEntities(\dokuwiki\Utf8\PhpString::basename(noNS($src))); 87 return $this->_xmlEntities($title ? $title : \dokuwiki\Utf8\PhpString::basename(noNS($src))); 111 $title = \dokuwiki\Utf8\PhpString::basename(noNS($src)); 132 $ret .= $this->_xmlEntities(\dokuwiki\Utf8\PhpString::basename(noNS($src)));
|
/plugin/autoindex/ |
H A D | syntax.php | 3 use dokuwiki\Utf8\PhpString; alias 75 $first = PhpString::strtoupper(PhpString::substr($page['title'], 0, 1));
|
/plugin/bureaucracy/ |
H A D | syntax.php | 13 use dokuwiki\Utf8\PhpString; alias 585 $this->values['__formpage_!file__'] = PhpString::ucfirst($file); 586 $this->values['__formpage_!file!__'] = PhpString::strtoupper($file); 588 $this->values['__formpage_!page__'] = PhpString::ucfirst($page); 589 $this->values['__formpage_!!page__'] = PhpString::ucwords($page); 590 $this->values['__formpage_!page!__'] = PhpString::strtoupper($page);
|
/plugin/qna/syntax/ |
H A D | block.php | 124 if (\dokuwiki\Utf8\PhpString::strlen($identifier) > $this->maxIdLength) { 125 $identifier = \dokuwiki\Utf8\PhpString::substr($identifier, 0, $this->maxIdLength);
|
/plugin/twofactor/ |
H A D | Provider.php | 8 use dokuwiki\Utf8\PhpString; alias 92 return PhpString::ucfirst($this->providerID);
|
/plugin/struct/types/ |
H A D | Tag.php | 9 use dokuwiki\Utf8\PhpString; alias 51 if (PhpString::strlen($lookup) < $this->config['autocomplete']['mininput']) return [];
|
H A D | User.php | 10 use dokuwiki\Utf8\PhpString; 77 if (PhpString::strlen($lookup) < $this->config['autocomplete']['mininput']) return []; 9 use dokuwiki\Utf8\PhpString; global() alias
|
H A D | Page.php | 9 use dokuwiki\Utf8\PhpString; 75 if (PhpString::strlen($lookup) < $this->config['autocomplete']['mininput']) return []; 226 if (PhpString::substr($filter, 0, 1) === ':') { 8 use dokuwiki\Utf8\PhpString; global() alias
|
/plugin/combo/action/ |
H A D | staticresource.php | 21 use dokuwiki\Utf8\PhpString; alias 296 'filename', PhpString::basename($originalFile)) . ';' 300 'filename', PhpString::basename($originalFile)) . ';'
|
/plugin/struct/meta/ |
H A D | Schema.php | 7 use dokuwiki\Utf8\PhpString; alias 346 if ($col->isEnabled() && PhpString::strtolower($col->getLabel()) === PhpString::strtolower($name)) {
|
H A D | SchemaBuilder.php | 6 use dokuwiki\Utf8\PhpString; 135 while (isset($labels[PhpString::strtolower($fixedlabel)])) { 143 $labels[PhpString::strtolower($fixedlabel)] = 1; 5 use dokuwiki\Utf8\PhpString; global() alias
|
/plugin/pureldap/classes/ |
H A D | ADClient.php | 5 use dokuwiki\Utf8\PhpString; alias 225 return PhpString::strtolower($group); 273 $user = PhpString::strtolower($user);
|
H A D | Client.php | 8 use dokuwiki\Utf8\PhpString; 79 $config['suffix'] = ltrim(PhpString::strtolower($config['suffix']), '@'); 5 use dokuwiki\Utf8\PhpString; global() alias
|
/plugin/usecounter/ |
H A D | helper.php | 3 use dokuwiki\Utf8\PhpString; alias
|
/plugin/edittable/action/ |
H A D | editor.php | 251 } elseif (method_exists(Utf8\PhpString::class, 'strlen')) { 253 $callable = [Utf8\PhpString::class, 'strlen'];
|
/plugin/do/syntax/ |
H A D | do.php | 4 use dokuwiki\Utf8\PhpString; alias 115 PhpString::strtolower(preg_replace('/\s/', '', $data['task']['text'])) . $ID
|
/plugin/tagfilter/ |
H A D | helper.php | 3 use dokuwiki\Utf8\PhpString; alias 106 return PhpString::ucwords(str_replace('_', ' ', trim($label, ':'))); 468 return PhpString::ucwords(str_replace('_', ' ', trim($label, ':')));
|
/plugin/menuext/ |
H A D | MenuExtItem.php | 7 use dokuwiki\Utf8\PhpString; 118 PhpString::ucfirst(curNS($ID)), 119 PhpString::ucwords(curNS($ID)), 120 PhpString::strtoupper(curNS($ID)), 122 PhpString::ucfirst($file), 123 PhpString::strtoupper($file), 125 PhpString::ucfirst($page), 126 PhpString::ucwords($page), 127 PhpString::strtoupper($page), 6 use dokuwiki\Utf8\PhpString; global() alias
|
/plugin/pagelist/ |
H A D | helper.php | 3 use dokuwiki\Utf8\PhpString; alias 717 if ($max > 1 && PhpString::strlen($desc) > $max) { 718 $desc = PhpString::substr($desc, 0, $max) . '…';
|
/plugin/tag/ |
H A D | helper.php | 8 use dokuwiki\Utf8\PhpString; alias 296 $sortkey = PhpString::strtolower($title);
|
/plugin/pagequery/ |
H A D | PageQuery.php | 3 use dokuwiki\Utf8\PhpString; alias 369 return ($count > 0) ? PhpString::substr(PhpString::strtolower($text), 0, $count) : '';
|
/plugin/batchedit/ |
H A D | engine.php | 212 $context = \dokuwiki\Utf8\PhpString::substr(substr($pageText, 0, $pageOffset), -$contextChars); 230 $context = \dokuwiki\Utf8\PhpString::substr(substr($pageText, $pageOffset), 0, $contextChars);
|
/plugin/nodetailsxhtml/ |
H A D | renderer.php | 115 if ( class_exists('dokuwiki\Utf8\PhpString') ) { 116 return dokuwiki\Utf8\PhpString::strlen( $input );
|