Home
last modified time | relevance | path

Searched +full:deaccent -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 1 – 9 of 9) sorted by relevance

/dokuwiki/inc/Utf8/
H A DClean.php142 * Use the optional parameter to just deaccent lower ($case = -1) or upper ($case = 1)
143 * letters. Default is to deaccent both cases ($case = 0)
151 public static function deaccent($string, $case = 0) function in dokuwiki\\Utf8\\Clean
/dokuwiki/inc/Utf8/tables/
H A Dloweraccents.php10 * @see \dokuwiki\Utf8\Clean::deaccent()
H A Dupperaccents.php10 * @see \dokuwiki\Utf8\Clean::deaccent()
H A Dromanization.php30 // scandinavian - differs from what we do in deaccent
/dokuwiki/inc/
H A Dutf8.php183 dbg_deprecated(Clean::class . '::deaccent()');
184 return Clean::deaccent($str, $case);
H A Dpageutils.php151 if ($conf['deaccent'] == 2 || $ascii) $id = Clean::romanize($id);
152 if ($conf['deaccent'] || $ascii) $id = Clean::deaccent($id, -1);
H A DMailer.class.php425 $text = Clean::deaccent($text);
592 $this->headers['Subject'] = Clean::deaccent($this->headers['Subject']);
/dokuwiki/conf/
H A Ddokuwiki.php49 $conf['deaccent'] = 1; //deaccented chars in pagenames (1) or romanize (2) or keep (0)?
/dokuwiki/lib/plugins/config/settings/
H A Dconfig.metadata.php115 $meta['deaccent'] = ['multichoice', '_choices' => [0, 1, 2], '_caution' => 'warning'];