Home
last modified time | relevance | path

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

1234

/dokuwiki/inc/Action/
H A DDiff.php26 global $INPUT;
29 $difftype = $INPUT->str('difftype');
H A DLogin.php26 global $INPUT;
28 if ($INPUT->server->has('REMOTE_USER')) {
H A DResendpwd.php73 global $INPUT;
80 $token = preg_replace('/[^a-f0-9]+/', '', $INPUT->str('pwauth'));
88 $INPUT->remove('pwauth');
94 $INPUT->remove('pwauth');
107 $pass = $INPUT->str('pass');
111 if ($pass != $INPUT->str('passchk')) {
140 if (!$INPUT->post->bool('save')) return false;
142 if (!$INPUT->post->str('login')) {
146 $user = trim($auth->cleanUser($INPUT->post->str('login')));
H A DSubscribe.php65 global $INPUT;
70 if ($INPUT->has("sub_$param")) {
71 $params[$param] = $INPUT->str("sub_$param");
88 $ok = $subManager->remove($target, $INPUT->server->str('REMOTE_USER'), $style);
90 $ok = $subManager->add($target, $INPUT->server->str('REMOTE_USER'), $style);
129 global $INPUT;
170 $INPUT->server->str('REMOTE_USER'),
H A DLogout.php38 global $INPUT;
44 if ($lockedby == $INPUT->server->str('REMOTE_USER')) {
H A DRedirect.php27 global $INPUT;
33 if ($INPUT->has('hid')) {
35 $opts['fragment'] = $INPUT->str('hid');
/dokuwiki/inc/
H A Dauth.php42 /* @var Input $INPUT */
43 global $INPUT;
74 $INPUT->set('http_credentials', false);
75 if (!$conf['rememberme']) $INPUT->set('r', false);
79 $header = $INPUT->server->str('HTTP_AUTHORIZATION') ?: $INPUT->server->str('REDIRECT_HTTP_AUTHORIZATION');
86 if (!$INPUT->str('u') && empty($_COOKIE[DOKU_COOKIE]) && !empty($INPUT->server->str('PHP_AUTH_USER'))) {
87 $INPUT->set('u', $INPUT
[all...]
H A Dchangelog.php64 /** @var Input $INPUT */
65 global $INPUT;
75 $user = ($flagExternalEdit) ? '' : $INPUT->server->str('REMOTE_USER');
122 /** @var Input $INPUT */
123 global $INPUT;
133 $user = ($flagExternalEdit) ? '' : $INPUT->server->str('REMOTE_USER');
H A DAjax.php48 global $INPUT;
52 $query = $INPUT->post->str('q');
53 if (empty($query)) $query = $INPUT->get->str('q');
95 global $INPUT;
97 $query = cleanID($INPUT->post->str('q'));
98 if (empty($query)) $query = cleanID($INPUT->get->str('q'));
133 global $INPUT;
135 $ID = cleanID($INPUT->post->str('id'));
172 global $INPUT;
173 $id = cleanID($INPUT
[all...]
H A DTaskRunner.php25 global $INPUT, $conf, $ID;
32 $output = $INPUT->has('debug') && $conf['allowdebug'];
37 $ID = cleanID($INPUT->str('id'));
H A Dmail.php41 /** @var Input $INPUT */
42 global $INPUT;
57 $replace['@USER@'] = $INPUT->server->str('REMOTE_USER', 'noreply', true);
H A Dmedia.php312 global $INPUT;
314 $id = $INPUT->get->str('qqfile');
323 if ($INPUT->server->has('CONTENT_LENGTH') && ($realSize != $INPUT->server->int('CONTENT_LENGTH'))) {
331 ($INPUT->get->str('ow') == 'true'),
359 global $INPUT;
362 $id = $INPUT->post->str('mediaid');
388 $INPUT->post->bool('ow'),
838 global $INPUT;
852 if ($INPUT
[all...]
H A Dfetch.functions.php152 global $MIME, $EXT, $CACHE, $INPUT;
157 if (media_get_token($media, $width, $height) !== $INPUT->str('tok')) {
172 if (($width || $height) && media_get_token($media, $width, $height) !== $INPUT->str('tok')) {
H A Dform.php327 global $INPUT;
328 $value = (array_key_exists($INPUT->post->str($name), $entries)) ?
329 $INPUT->str($name) : key($entries);
/dokuwiki/lib/plugins/styling/
H A Daction.php37 global $INPUT;
38 if ($ACT != 'admin' || $INPUT->str('page') != 'styling') return;
H A Dadmin.php37 global $INPUT;
38 $run = $INPUT->extract('run')->str('run');
196 global $INPUT;
201 foreach ($INPUT->arr('tpl') as $key => $val) {
/dokuwiki/inc/Menu/Item/
H A DLogin.php15 global $INPUT;
20 if ($INPUT->server->has('REMOTE_USER')) {
H A DSubscribe.php15 global $INPUT;
18 if (!$INPUT->server->str('REMOTE_USER')) {
/dokuwiki/inc/Menu/
H A DMobileMenu.php62 global $INPUT;
68 if ($INPUT->server->str('REMOTE_USER')) {
/dokuwiki/lib/plugins/acl/
H A Daction.php46 global $INPUT;
62 $ajax = $INPUT->str('ajax');
68 $ns = $INPUT->str('ns');
/dokuwiki/lib/exe/
H A Dcss.php40 global $INPUT;
42 if ($INPUT->str('s') == 'feed') {
51 $tpl = trim(preg_replace('/[^\w-]+/', '', $INPUT->str('t')));
57 $styleUtil = new StyleUtils($tpl, $INPUT->bool('preview'));
66 if ($INPUT->bool('preview')) {
118 $INPUT->bool('preview') .
H A Ddetail.php9 global $INPUT, $IMG, $ID, $REV, $SRC, $ERROR, $AUTH;
14 $ID = cleanID($INPUT->str('id'));
15 $REV = $INPUT->int('rev');
/dokuwiki/inc/Ui/
H A DLogin.php40 global $INPUT;
54 ->val(($INPUT->bool('http_credentials')) ? '' : $INPUT->str('u'));
/dokuwiki/inc/Cache/
H A DCache.php147 global $INPUT;
148 if ($INPUT->has('purge')) {
H A DCacheParser.php22 global $INPUT;
31 parent::__construct($file . $INPUT->server->str('HTTP_HOST') . $INPUT->server->str('SERVER_PORT'), '.' . $mode);

1234