Home
last modified time | relevance | path

Searched refs:ucwords (Results 1 – 10 of 10) sorted by relevance

/dokuwiki/inc/Remote/OpenApiDoc/
DOpenAPIGenerator.php191 'tags' => [PhpString::ucwords($call->getCategory())],
335 $name = PhpString::ucwords($name);
/dokuwiki/.github/
Drelease.php88 $next['codename'] = ucwords(strtolower($next['codename']));
/dokuwiki/inc/
DActionRouter.php187 $class = 'dokuwiki\\Action\\' . str_replace('_', '', ucwords($load, '_'));
Dutf8.php175 return PhpString::ucwords($str);
DMailer.class.php153 …$header = str_replace(' ', '-', ucwords(strtolower(str_replace('-', ' ', $header)))); // streamlin…
Dcommon.php1141 PhpString::ucwords(curNS($id)),
1148 PhpString::ucwords($page),
/dokuwiki/lib/plugins/config/core/
DLoader.php281 $strings[$prefix . $type . '_settings_name'] = ucwords(str_replace('_', ' ', $extname));
DConfiguration.php217 $modern = str_replace('_', '', ucwords($class, '_'));
/dokuwiki/lib/plugins/extension/
DExtension.php237 return $this->getTag('name', PhpString::ucwords($this->getBase() . ' ' . $this->getType()));
/dokuwiki/inc/Utf8/
DPhpString.php324 public static function ucwords($str) function in dokuwiki\\Utf8\\PhpString