Home
last modified time | relevance | path

Searched refs:PhpString (Results 1 – 23 of 23) sorted by path

/plugin/autoindex/
H A Dsyntax.php3 use dokuwiki\Utf8\PhpString; alias
75 $first = PhpString::strtoupper(PhpString::substr($page['title'], 0, 1));
/plugin/batchedit/
H A Dengine.php212 $context = \dokuwiki\Utf8\PhpString::substr(substr($pageText, 0, $pageOffset), -$contextChars);
230 $context = \dokuwiki\Utf8\PhpString::substr(substr($pageText, $pageOffset), 0, $contextChars);
/plugin/bez/renderer/
H A Dxhtmlmail.php58 $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/bureaucracy/
H A Dsyntax.php13 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/combo/action/
H A Dstaticresource.php21 use dokuwiki\Utf8\PhpString; alias
296 'filename', PhpString::basename($originalFile)) . ';'
300 'filename', PhpString::basename($originalFile)) . ';'
/plugin/do/syntax/
H A Ddo.php4 use dokuwiki\Utf8\PhpString; alias
115 PhpString::strtolower(preg_replace('/\s/', '', $data['task']['text'])) . $ID
/plugin/edittable/action/
H A Deditor.php251 } elseif (method_exists(Utf8\PhpString::class, 'strlen')) {
253 $callable = [Utf8\PhpString::class, 'strlen'];
/plugin/menuext/
H A DMenuExtItem.php6 use dokuwiki\Utf8\PhpString; alias
/plugin/nodetailsxhtml/
H A Drenderer.php115 if ( class_exists('dokuwiki\Utf8\PhpString') ) {
116 return dokuwiki\Utf8\PhpString::strlen( $input );
/plugin/pagelist/
H A Dhelper.php3 use dokuwiki\Utf8\PhpString; alias
717 if ($max > 1 && PhpString::strlen($desc) > $max) {
718 $desc = PhpString::substr($desc, 0, $max) . '…';
/plugin/pagequery/
H A DPageQuery.php3 use dokuwiki\Utf8\PhpString; alias
369 return ($count > 0) ? PhpString::substr(PhpString::strtolower($text), 0, $count) : '';
/plugin/pureldap/classes/
H A DADClient.php5 use dokuwiki\Utf8\PhpString; alias
225 return PhpString::strtolower($group);
273 $user = PhpString::strtolower($user);
H A DClient.php8 use dokuwiki\Utf8\PhpString;
79 $config['suffix'] = ltrim(PhpString::strtolower($config['suffix']), '@');
5 use dokuwiki\Utf8\PhpString; global() alias
/plugin/qna/syntax/
H A Dblock.php124 if (\dokuwiki\Utf8\PhpString::strlen($identifier) > $this->maxIdLength) {
125 $identifier = \dokuwiki\Utf8\PhpString::substr($identifier, 0, $this->maxIdLength);
/plugin/struct/meta/
H A DSchema.php7 use dokuwiki\Utf8\PhpString; alias
346 if ($col->isEnabled() && PhpString::strtolower($col->getLabel()) === PhpString::strtolower($name)) {
H A DSchemaBuilder.php6 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/struct/types/
H A DPage.php9 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
H A DTag.php9 use dokuwiki\Utf8\PhpString; alias
51 if (PhpString::strlen($lookup) < $this->config['autocomplete']['mininput']) return [];
H A DUser.php10 use dokuwiki\Utf8\PhpString;
77 if (PhpString::strlen($lookup) < $this->config['autocomplete']['mininput']) return [];
9 use dokuwiki\Utf8\PhpString; global() alias
/plugin/tag/
H A Dhelper.php8 use dokuwiki\Utf8\PhpString; alias
296 $sortkey = PhpString::strtolower($title);
/plugin/tagfilter/
H A Dhelper.php3 use dokuwiki\Utf8\PhpString; alias
106 return PhpString::ucwords(str_replace('_', ' ', trim($label, ':')));
468 return PhpString::ucwords(str_replace('_', ' ', trim($label, ':')));
/plugin/twofactor/
H A DProvider.php8 use dokuwiki\Utf8\PhpString; alias
92 return PhpString::ucfirst($this->providerID);
/plugin/usecounter/
H A Dhelper.php3 use dokuwiki\Utf8\PhpString; alias