Home
last modified time | relevance | path

Searched refs:str (Results 26 – 50 of 145) sorted by last modified time

123456

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php3323 _extractBER($str) global() argument
/dokuwiki/inc/
H A DMailer.class.php64 $this->setHeader('X-DokuWiki-User', $INPUT->server->str('REMOTE_USER'));
667 'BROWSER' => $INPUT->server->str('HTTP_USER_AGENT'),
672 'USER' => $INPUT->server->str('REMOTE_USER'),
686 'BROWSER' => hsc($INPUT->server->str('HTTP_USER_AGENT')),
691 'USER' => hsc($INPUT->server->str('REMOTE_USER')),
H A Dcommon.php111 $user = $INPUT->server->str('REMOTE_USER');
129 if (!$INPUT->server->str('REMOTE_USER')) return true; // no logged in user, no need for a check
131 if (is_null($token)) $token = $INPUT->str('sectok');
178 $info['client'] = $INPUT->server->str('REMOTE_USER');
189 $info['userinfo']['name'] = $INPUT->server->str('REMOTE_USER');
480 strpos($INPUT->server->str('SERVER_SOFTWARE'), 'Microsoft-IIS') === false
765 $data['userinfo']['ip'] = $INPUT->server->str('REMOTE_ADDR');
766 if ($INPUT->server->str('REMOTE_USER')) {
767 $data['userinfo']['user'] = $INPUT->server->str('REMOTE_USER');
799 $ip[] = $INPUT->server->str('REMOTE_ADD
[all...]
H A Dpluginutils.php135 if (($ACT == 'admin') && ($page = $INPUT->str('page', '', true)) != '') {
H A Dinfoutils.php283 $INPUT->server->str('REMOTE_USER'),
/dokuwiki/inc/Menu/Item/
H A DProfile.php18 if (!$INPUT->server->str('REMOTE_USER')) {
H A DRegister.php18 if ($INPUT->server->str('REMOTE_USER')) {
/dokuwiki/inc/Parsing/Lexer/
H A DLexer.php302 * @param string $str
305 public static function escape($str)
347 return preg_replace($chars, $escaped, $str);
306 escape($str) global() argument
/dokuwiki/lib/scripts/
H A Dedit.js172 var str = "\n" + opt,
173 lasthl = str.lastIndexOf("\n==");
175 s = str.substr(lasthl+1,6);
/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php1933 * @param string $str The input string.
1936 public static function parse_str($str) argument
1939 $str = explode('&', $str);
1941 foreach ($str as $section) {
2164 public static function silence_errors($num, $str) argument
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php43 $olduser = $INPUT->server->str('REMOTE_USER');
89 ($INPUT->server->str('REMOTE_USER') === $rev['user'] ||
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DTableFormatter.php286 * @param string $str
293 protected function wordwrap($str, $width = 75, $break = "\n", $cut = false) argument
295 $lines = explode($break, $str);
/dokuwiki/inc/Ui/
H A DEditor.php42 $check = $INPUT->str('changecheck');
79 'target' => ($INPUT->has('target') && $wr) ? $INPUT->str('target') : 'section',
94 $form->setHiddenField('hid', $INPUT->str('hid'));
97 $form->setHiddenField('codeblockOffset', $INPUT->str('codeblockOffset'));
127 if ($conf['useacl'] && $INPUT->server->str('REMOTE_USER')) {
H A DSubscribe.php91 $value = (array_key_exists($INPUT->post->str('sub_target'), $targets)) ?
92 $INPUT->str('sub_target') : key($targets);
101 $value = (array_key_exists($INPUT->post->str('sub_style'), $styles)) ?
102 $INPUT->str('sub_style') : key($styles);
/dokuwiki/inc/Utf8/
H A DClean.php15 * @param string $str
18 public static function isASCII($str) argument
20 return (preg_match('/(?:[^\x00-\x7F])/', $str) !== 1);
29 * @param string $str
32 public static function isUtf8($str) argument
34 $len = strlen($str);
36 $b = ord($str[$i]);
46 if ((++$i === $len) || ((ord($str[$i]) & 0xC0) !== 0x80))
60 * @param string $str
63 public static function strip($str) argument
114 replaceBadBytes($str, $replace = '') global() argument
187 correctIdx($str, $i, $next = false) global() argument
[all...]
H A DUnicode.php31 * @param string $str UTF-8 encoded string
35 public static function fromUtf8($str, $strict = false)
44 $len = strlen($str);
47 $in = ord($str[$i]);
36 fromUtf8($str, $strict = false) global() argument
/dokuwiki/inc/Action/Exception/
H A DActionException.php38 if (strtolower($INPUT->server->str('REQUEST_METHOD')) == 'post') {
/dokuwiki/lib/plugins/revert/
H A Dadmin.php61 $this->revertEdits($INPUT->arr('revert'), $INPUT->str('filter'));
63 $this->listEdits($INPUT->str('filter'));
75 echo '<input type="text" name="filter" class="edit" value="' . hsc($INPUT->str('filter')) . '" /> ';
/dokuwiki/inc/Action/
H A DRecent.php29 $show_changes = $INPUT->str('show_changes');
H A DSearch.php42 parse_str($INPUT->server->str('QUERY_STRING'), $urlParts);
69 $after = $INPUT->str('min');
70 $before = $INPUT->str('max');
72 $this->fullTextResults = ft_pageSearch($QUERY, $highlight, $INPUT->str('srt'), $after, $before);
/dokuwiki/lib/plugins/logviewer/
H A Dadmin.php33 $this->facility = $INPUT->str('facility');
38 $this->date = $INPUT->str('date');
/dokuwiki/lib/plugins/popularity/lang/cs/
H A Dintro.txt
/dokuwiki/lib/exe/
H A Dajax.php25 $call = $INPUT->filter([Clean::class, 'stripspecials'])->str('call');
H A Dfetch.php29 $CACHE = calc_cache($INPUT->str('cache'));
/dokuwiki/lib/plugins/acl/
H A Dscript.js79 parseatt: function (str) { argument
80 if (str[0] === '?') {
81 str = str.substr(1);
84 var all = str.split('&');

123456