Home
last modified time | relevance | path

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

1234

/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...]
H A Dfeed.php10 * @global Input $INPUT
40 $INPUT->server->str('REMOTE_USER'),
41 $INPUT->server->str('HTTP_HOST'),
42 $INPUT->server->str('SERVER_PORT')
49 $depends['purge'] = $INPUT->bool('purge');
/dokuwiki/inc/Action/
H A DAbstractUserAction.php20 global $INPUT;
21 if ($INPUT->server->str('REMOTE_USER') === '') {
H A DAdmin.php26 global $INPUT;
29 if ($INPUT->str('page', '', true) != '') {
H A DDenied.php32 global $INPUT;
33 if (empty($INPUT->server->str('REMOTE_USER')) && actionOK('login')) {
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 DLogout.php38 global $INPUT;
44 if ($lockedby == $INPUT->server->str('REMOTE_USER')) {
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 DRedirect.php27 global $INPUT;
33 if ($INPUT->has('hid')) {
35 $opts['fragment'] = $INPUT->str('hid');
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 DRevisions.php26 global $INFO, $INPUT;
27 (new PageRevisions($INFO['id']))->show($INPUT->int('first', -1));
H A DSave.php41 global $INPUT;
58 saveWikiText($ID, con($PRE, $TEXT, $SUF, true), $SUM, $INPUT->bool('minor')); //use pretty mode for con
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 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'),
/dokuwiki/inc/Action/Exception/
H A DActionException.php35 global $INPUT;
38 if (strtolower($INPUT->server->str('REQUEST_METHOD')) == 'post') {
/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 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'),
H A DMailer.class.php43 /* @var Input $INPUT */
44 global $INPUT;
64 $this->setHeader('X-DokuWiki-User', $INPUT->server->str('REMOTE_USER'));
656 /* @var Input $INPUT */
657 global $INPUT;
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')),
/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);
/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/inc/Menu/Item/
H A DLogin.php15 global $INPUT;
20 if ($INPUT->server->has('REMOTE_USER')) {

1234