Home
last modified time | relevance | path

Searched refs:INPUT (Results 1 – 25 of 83) sorted by relevance

1234

/dokuwiki/lib/exe/
H A Dmediamanager.php13 global $INPUT;
17 if ($INPUT->str('msg1')) msg(hsc($INPUT->str('msg1')), 1);
18 if ($INPUT->str('err')) msg(hsc($INPUT->str('err')), -1);
22 if ($INPUT->str('delete')) {
23 $DEL = cleanID($INPUT->str('delete'));
26 } elseif ($INPUT->str('edit')) {
27 $IMG = cleanID($INPUT->str('edit'));
29 } elseif ($INPUT
[all...]
H A Dajax.php23 global $INPUT;
24 if ($INPUT->has('call')) {
25 $call = $INPUT->filter([Clean::class, 'stripspecials'])->str('call');
/dokuwiki/
H A Ddoku.php9 * @global Input $INPUT
23 global $ACT, $INPUT, $QUERY, $ID, $REV, $DATE_AT, $IDX,
41 $INPUT->set('id', str_replace("\xC2\xAD", '', $INPUT->str('id'))); //soft-hyphen
42 $QUERY = trim($INPUT->str('q'));
45 $REV = $INPUT->int('rev');
46 $DATE_AT = $INPUT->str('at');
47 $IDX = $INPUT->str('idx');
48 $DATE = $INPUT->int('date');
49 $RANGE = $INPUT
[all...]
/dokuwiki/inc/
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 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 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/Action/
H A DRecent.php28 global $INPUT;
29 $show_changes = $INPUT->str('show_changes');
41 global $INPUT;
42 (new Ui\Recent($INPUT->extract('first')->int('first'), $this->showType))->show();
H A DSearch.php38 global $QUERY, $ID, $conf, $INPUT;
41 if ($ID !== $conf['start'] && !$INPUT->has('q')) {
42 parse_str($INPUT->server->str('QUERY_STRING'), $urlParts);
68 global $INPUT, $QUERY;
69 $after = $INPUT->str('min');
70 $before = $INPUT->str('max');
72 $this->fullTextResults = ft_pageSearch($QUERY, $highlight, $INPUT->str('srt'), $after, $before);
83 global $conf, $INPUT, $QUERY, $ID;
85 if ($INPUT->bool('sf')) {
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 DAbstractUserAction.php20 global $INPUT;
21 if ($INPUT->server->str('REMOTE_USER') === '') {
H A DRevisions.php26 global $INFO, $INPUT;
27 (new PageRevisions($INFO['id']))->show($INPUT->int('first', -1));
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 DRedirect.php27 global $INPUT;
33 if ($INPUT->has('hid')) {
35 $opts['fragment'] = $INPUT->str('hid');
H A DDiff.php26 global $INPUT;
29 $difftype = $INPUT->str('difftype');
H A DLogin.php26 global $INPUT;
28 if ($INPUT->server->has('REMOTE_USER')) {
/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'));
/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/inc/Menu/Item/
H A DProfile.php15 global $INPUT;
18 if (!$INPUT->server->str('REMOTE_USER')) {
H A DRegister.php15 global $INPUT;
18 if ($INPUT->server->str('REMOTE_USER')) {
H A DResendpwd.php15 global $INPUT;
18 if ($INPUT->server->str('REMOTE_USER')) {
H A DSubscribe.php15 global $INPUT;
18 if (!$INPUT->server->str('REMOTE_USER')) {
/dokuwiki/inc/Ui/
H A DEditor.php27 global $INPUT;
41 if ($INPUT->has('changecheck')) {
42 $check = $INPUT->str('changecheck');
79 'target' => ($INPUT->has('target') && $wr) ? $INPUT->str('target') : 'section',
93 if ($INPUT->has('hid')) {
94 $form->setHiddenField('hid', $INPUT->str('hid'));
96 if ($INPUT->has('codeblockOffset')) {
97 $form->setHiddenField('codeblockOffset', $INPUT->str('codeblockOffset'));
127 if ($conf['useacl'] && $INPUT
[all...]
/dokuwiki/lib/plugins/revert/
H A Dadmin.php54 global $INPUT;
60 if (is_array($INPUT->param('revert')) && checkSecurityToken()) {
61 $this->revertEdits($INPUT->arr('revert'), $INPUT->str('filter'));
62 } elseif ($INPUT->has('filter')) {
63 $this->listEdits($INPUT->str('filter'));
72 global $lang, $INPUT;
75 echo '<input type="text" name="filter" class="edit" value="' . hsc($INPUT->str('filter')) . '" /> ';
/dokuwiki/lib/plugins/extension/
H A Daction.php34 global $INPUT;
48 $ext = $INPUT->str('ext');
59 $act = $INPUT->str('act');
63 if (getSecurityToken() != $INPUT->str('sectok')) {
/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);

1234