Home
last modified time | relevance | path

Searched refs:Clean (Results 1 – 14 of 14) sorted by relevance

/dokuwiki/inc/
H A Dutf8.php12 use dokuwiki\Utf8\Clean;
56 dbg_deprecated(Clean::class . '::isASCII()');
57 return Clean::isASCII($str);
66 dbg_deprecated(Clean::class . '::strip()');
67 return Clean::strip($str);
75 dbg_deprecated(Clean::class . '::isUtf8()');
76 return Clean::isUtf8($str);
183 dbg_deprecated(Clean::class . '::deaccent()');
184 return Clean::deaccent($str, $case);
192 dbg_deprecated(Clean
11 use dokuwiki\Utf8\Clean; global() alias
[all...]
H A DMailer.class.php14 use dokuwiki\Utf8\Clean;
409 if (!Clean::isASCII($addr)) {
425 $text = Clean::deaccent($text);
426 $text = Clean::strip($text);
429 if (strpos($text, ',') !== false || !Clean::isASCII($text)) {
592 $this->headers['Subject'] = Clean::deaccent($this->headers['Subject']);
593 $this->headers['Subject'] = Clean::strip($this->headers['Subject']);
595 if (!Clean::isASCII($this->headers['Subject'])) {
H A Dpageutils.php12 use dokuwiki\Utf8\Clean;
151 if ($conf['deaccent'] == 2 || $ascii) $id = Clean::romanize($id);
152 if ($conf['deaccent'] || $ascii) $id = Clean::deaccent($id, -1);
155 $id = Clean::stripspecials($id, $sepchar, '\*');
157 if ($ascii) $id = Clean::strip($id);
H A Dfulltext.php13 use dokuwiki\Utf8\Clean;
393 if (Clean::isASCII($search)) {
543 $offset = Clean::correctIdx($text, $offset);
10 use dokuwiki\Utf8\Clean; global() alias
H A Dindexer.php11 use dokuwiki\Utf8\Clean;
364 * Clean a name of a key for use as a file name.
376 $name = Clean::romanize(trim((string)$name));
H A Dhtml.php30 use dokuwiki\Utf8\Clean;
306 if (!Clean::isUtf8($regex)) return $html;
27 use dokuwiki\Utf8\Clean; global() alias
H A Dcommon.php12 use dokuwiki\Utf8\Clean;
1015 if (!Clean::isUtf8($text)) $text = utf8_encode($text);
/dokuwiki/lib/exe/
H A Dajax.php10 use dokuwiki\Utf8\Clean;
25 $call = $INPUT->filter([Clean::class, 'stripspecials'])->str('call');
/dokuwiki/inc/parser/
H A Dcode.php3 use dokuwiki\Utf8\Clean;
31 $filename = Clean::stripspecials($filename, '_');
/dokuwiki/inc/Utf8/
H A DClean.php8 class Clean class
/dokuwiki/lib/plugins/authad/
H A Dauth.php4 use dokuwiki\Utf8\Clean;
110 } elseif (!Clean::isUtf8($INPUT->server->str('REMOTE_USER'))) {
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php5 use dokuwiki\Utf8\Clean;
1080 if (!Clean::isUtf8($csv)) {
/dokuwiki/inc/Search/
H A DIndexer.php6 use dokuwiki\Utf8\Clean;
525 $text = Clean::stripspecials($text, ' ', '\._\-:' . $wc);
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md26 - Parse\Date: Clean up regex structure by @jtojnar in [#765](https://github.com/simplepie/simplepie/pull/765)