Home
last modified time | relevance | path

Searched refs:INPUT (Results 76 – 83 of 83) sorted by last modified time

1234

/dokuwiki/inc/
H A Dhttputils.php25 global $INPUT;
35 $if_modified_since = $INPUT->server->filter('stripslashes')->str('HTTP_IF_MODIFIED_SINCE', false);
36 $if_none_match = $INPUT->server->filter('stripslashes')->str('HTTP_IF_NONE_MATCH', false);
102 global $INPUT;
109 if (!$INPUT->server->has('HTTP_RANGE')) {
113 $t = explode('=', $INPUT->server->str('HTTP_RANGE'));
295 global $INPUT;
340 $server_protocol = $INPUT->server->str('SERVER_PROTOCOL', false);
H A DDraft.php72 global $INPUT, $INFO, $EVENT_HANDLER, $conf;
77 !$INPUT->post->has('wikitext') &&
84 'prefix' => substr($INPUT->post->str('prefix'), 0, -1),
85 'text' => $INPUT->post->str('wikitext'),
86 'suffix' => $INPUT->post->str('suffix'),
87 'date' => $INPUT->post->int('date'),
/dokuwiki/inc/File/
H A DPageFile.php90 /* @var Input $INPUT */
91 global $INPUT;
129 $is_minor_change = ($minor && $conf['useacl'] && $INPUT->server->str('REMOTE_USER'));
204 'user' => $INPUT->server->str('REMOTE_USER'),
/dokuwiki/inc/Form/
H A DCheckableElement.php31 global $INPUT;
35 if (!$INPUT->has($name)) return;
39 $value = $INPUT->str($name);
47 $input = $INPUT->arr($name);
H A DInputElement.php52 * The default is true. Any set values will be overwritten by the INPUT
91 * Figures out how to access the value for this field from INPUT data
125 global $INPUT;
128 if (!$INPUT->has($name)) return;
131 $value = $INPUT->str($name);
133 $value = $INPUT->arr($name);
/dokuwiki/lib/plugins/popularity/
H A Dadmin.php57 global $INPUT;
60 if ($INPUT->has('data')) {
61 $this->sentStatus = $this->helper->sendData($INPUT->str('data'));
67 $this->enableAutosubmit($INPUT->has('autosubmit'));
89 global $INPUT;
91 if (! $INPUT->has('data')) {
114 echo $this->buildForm('browser', $INPUT->str('data'));
/dokuwiki/lib/plugins/authad/
H A Daction.php36 global $INPUT;
42 if ($INPUT->str('dom')) {
46 $usr = "$usr@" . $INPUT->str('dom');
48 $INPUT->post->set('u', $usr);
61 global $INPUT;
76 if ($INPUT->has('u')) {
77 $usr = $auth->cleanUser($INPUT->str('u'));
H A Dauth.php79 global $INPUT;
103 if (!empty($INPUT->server->str('REMOTE_USER'))) {
106 $INPUT->server->set(
108 iconv($this->getConf('sso_charset'), 'UTF-8', $INPUT->server->str('REMOTE_USER'))
110 } elseif (!Clean::isUtf8($INPUT->server->str('REMOTE_USER'))) {
111 $INPUT->server->set('REMOTE_USER', utf8_encode($INPUT->server->str('REMOTE_USER')));
116 $INPUT->server->set('REMOTE_USER', $this->cleanUser($INPUT->server->str('REMOTE_USER')));
120 $INPUT
[all...]

1234