Home
last modified time | relevance | path

Searched refs:trim (Results 1 – 25 of 86) sorted by path

1234

/dokuwiki/bin/
H A Ddwpage.php189 $key = trim(array_shift($args));
191 echo trim(json_encode($meta, JSON_PRETTY_PRINT));
249 $message = trim($message);
/dokuwiki/
H A Ddoku.php28 $ACT = trim(strtolower($_SERVER['HTTP_X_DOKUWIKI_DO']));
42 $QUERY = trim($INPUT->str('q'));
/dokuwiki/inc/Action/
H A DResendpwd.php146 $user = trim($auth->cleanUser($INPUT->post->str('login')));
/dokuwiki/inc/
H A DAjax.php107 $data = array_map('trim', $data);
354 $q = ltrim(trim($INPUT->post->str('q')), ':');
H A DInfo.php45 $return['codename'] = trim($return['codename'], ' "');
H A DJpegMeta.php191 return trim($info);
286 $cam = trim("$make $model");
H A DMailer.class.php53 $listid = strtolower(trim($listid, '.'));
161 $value = array_map('trim', $value);
165 $value = trim($value);
352 $name = trim($name, " \t\"");
393 $part = trim($part);
397 $text = trim($matches[1]);
443 $headers = trim($headers);
745 trim($this->headers['To']) === '' &&
746 trim($this->headers['Cc']) === '' &&
747 trim(
[all...]
H A Dauth.php144 $line = trim($line);
634 $members = array_map('trim', $members);
979 $login = trim($auth->cleanUser($INPUT->post->str('login')));
980 $fullname = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('fullname')));
981 $email = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $INPUT->post->str('email')));
1068 $changes['name'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['name']));
1069 $changes['mail'] = trim(preg_replace('/[\x00-\x1f:<>&%,;]+/', '', $changes['mail']));
1266 $user = trim($auth->cleanUser($INPUT->post->str('login')));
/dokuwiki/inc/Debug/
H A DDebugHelper.php75 return trim($thing, ':');
96 $caller = trim($call['class'] . '::' . $call['function'] . '()', ':');
/dokuwiki/inc/Extension/
H A DPluginTrait.php266 if ($more) $more = " " . trim($more);
/dokuwiki/inc/File/
H A DPageFile.php122 } elseif (trim($data['newContent']) == '') {
/dokuwiki/inc/HTTP/
H A DHTTPClient.php340 $key = trim($key);
782 $key = trim($key);
783 $val = trim($val);
/dokuwiki/inc/Parsing/Handler/
H A DBlock.php92 if (trim($content) == '') {
H A DPreformatted.php36 if (trim($this->text)) {
/dokuwiki/inc/Remote/
H A DApi.php152 if (!$conf['remote'] || trim($conf['remoteuser']) == '!!not set!!') {
172 if (trim($conf['remoteuser']) === '') return; // all users are allowed
H A DApiCore.php669 if (!page_exists($page) && trim($TEXT) == '') {
/dokuwiki/inc/Search/
H A DIndexer.php1189 $line = trim($line, ':');
/dokuwiki/inc/Sitemap/
H A DItem.php47 $id = trim($id);
/dokuwiki/inc/Subscriptions/
H A DSubscriberManager.php46 $user = auth_nameencode(trim($user));
47 $style = trim($style);
48 $data = trim($data);
194 $line = trim($line) . " every\n";
275 $data['addresslist'] = trim($addresslist . ',' . implode(',', $result), ',');
H A DSubscriptionSender.php34 $listid = strtolower(trim($listid, '.'));
/dokuwiki/inc/Ui/Media/
H A DDisplayRow.php20 $info = trim($this->formatDimensions('') . ' ' . $this->formatDate() . ' ' . $this->formatFileSize());
/dokuwiki/inc/Ui/
H A DMediaDiff.php245 $rev1Title = trim($this->RevInfo1->showRevisionTitle() . ' ' . $this->RevInfo1->showCurrentIndicator());
249 $rev2Title = trim($this->RevInfo2->showRevisionTitle() . ' ' . $this->RevInfo2->showCurrentIndicator());
H A DPageDiff.php194 $rev1Title = trim($this->RevInfo1->showRevisionTitle() . ' ' . $this->RevInfo1->showCurrentIndicator());
203 $rev2Title = trim($this->RevInfo2->showRevisionTitle() . ' ' . $this->RevInfo2->showCurrentIndicator());
H A DSearch.php218 'and' => array_map(static fn($term) => trim($term, '*'), $this->parsedQuery['and']),
219 'not' => array_map(static fn($term) => trim($term, '*'), $this->parsedQuery['not']),
223 'and' => array_map(static fn($term) => trim($term, '*') . '*', $this->parsedQuery['and']),
224 'not' => array_map(static fn($term) => trim($term, '*') . '*', $this->parsedQuery['not']),
228 'and' => array_map(static fn($term) => '*' . trim($term, '*'), $this->parsedQuery['and']),
229 'not' => array_map(static fn($term) => '*' . trim($term, '*'), $this->parsedQuery['not']),
233 'and' => array_map(static fn($term) => '*' . trim($term, '*') . '*', $this->parsedQuery['and']),
234 'not' => array_map(static fn($term) => '*' . trim($term, '*') . '*', $this->parsedQuery['not']),
/dokuwiki/inc/Utf8/
H A DPhpString.php24 $path = trim($path, '\\/');
232 * Unicode aware replacement for trim()
237 * @see trim()
241 public static function trim($str, $charlist = '')
243 if ($charlist === '') return trim($str);
250 public static function trim($str, $charlist = '') global() function in dokuwiki\\Utf8\\PhpString

1234