Home
last modified time | relevance | path

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

1234

/dokuwiki/inc/
H A Dpluginutils.php132 global $ACT,$INPUT,$INFO;
135 if (($ACT == 'admin') && ($page = $INPUT->str('page', '', true)) != '') {
144 $INPUT->remove('page');
H A Dinfoutils.php176 /* @var Input $INPUT */
177 global $INPUT;
283 $INPUT->server->str('REMOTE_USER'),
H A Dinit.php222 global $INPUT;
223 $INPUT = new Input();
448 * !! Can not access $_SERVER values through $INPUT
449 * !! here as this function is called before $INPUT is
217 $INPUT = new \dokuwiki\Input\Input(); global() variable
/dokuwiki/lib/exe/
H A Dajax.php23 global $INPUT;
24 if ($INPUT->has('call')) {
25 $call = $INPUT->filter([Clean::class, 'stripspecials'])->str('call');
H A Dfetch.php21 $INPUT = new Input();
29 $CACHE = calc_cache($INPUT->str('cache'));
30 $WIDTH = $INPUT->int('w');
31 $HEIGHT = $INPUT->int('h');
32 $REV = &$INPUT->ref('rev');
19 $INPUT = new \dokuwiki\Input\Input(); global() variable
/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')) {
H A Dadmin.php52 global $INPUT;
57 if (!$repository->hasAccess(!$INPUT->bool('purge'))) {
71 if ($INPUT->post->has('fn') && checkSecurityToken()) {
72 $actions = $INPUT->post->arr('fn');
131 } elseif ($INPUT->post->str('installurl') && checkSecurityToken()) {
133 $INPUT->post->str('installurl'),
134 $INPUT->post->bool('overwrite')
144 $installed = $extension->installFromUpload('installfile', $INPUT->post->bool('overwrite'));
/dokuwiki/lib/plugins/extension/helper/
H A Dgui.php30 global $INPUT;
31 $this->infoFor = $INPUT->str('info');
101 global $INPUT;
113 ->val($INPUT->str('q'));
119 if (!$INPUT->bool('q')) return;
123 $result = $repository->search($INPUT->str('q'));
209 global $INPUT;
211 $tab = $INPUT->str('tab', 'plugins', true);
228 global $INPUT;
236 if ($tab == 'search') $defaults['q'] = $INPUT
[all...]
/dokuwiki/inc/Menu/Item/
H A DResendpwd.php15 global $INPUT;
18 if ($INPUT->server->str('REMOTE_USER')) {
H A DRevert.php17 global $INPUT;
20 if (!$REV || !$INFO['writable'] || $INPUT->server->str('REMOTE_USER') === '') {
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php120 global $INPUT;
125 $fn = $INPUT->param('fn');
136 $this->start = $INPUT->int('start', 0);
642 global $INPUT;
651 if ($INPUT->has('usernotify')) {
696 if ($INPUT->has('usernotify') && $pass) {
714 global $conf, $INPUT;
719 $selected = $INPUT->arr('delete');
776 global $conf, $INPUT;
782 $olduser = $this->auth->cleanUser(preg_replace('/.*[:\/]/', '', $INPUT
[all...]
/dokuwiki/inc/Remote/
H A DApi.php167 global $INPUT;
173 if (auth_isMember($conf['remoteuser'], $INPUT->server->str('REMOTE_USER'), (array)($USERINFO['grps'] ?? []))) {
/dokuwiki/inc/Subscriptions/
H A DSubscriberManager.php119 /** @var Input $INPUT */
120 global $INPUT;
125 $user = $INPUT->server->str('REMOTE_USER');
244 /** @var \Input $INPUT */
245 global $INPUT;
263 if (!$self && $user == $INPUT->server->str('REMOTE_USER')) {
/dokuwiki/inc/Ui/
H A DMediaDiff.php61 global $INPUT;
67 if ($INPUT->has('difftype')) {
68 $this->preference['difftype'] = $INPUT->str('difftype');
H A DPageDiff.php101 global $INPUT;
110 if ($INPUT->has('difftype')) {
111 $mode = $INPUT->str('difftype');
120 if (!$INPUT->has('rev') && !$INPUT->has('rev2')) {
H A DSearch.php67 global $lang, $ID, $INPUT;
73 if ($INPUT->has('min')) {
74 $searchForm->setHiddenField('min', $INPUT->str('min'));
76 if ($INPUT->has('max')) {
77 $searchForm->setHiddenField('max', $INPUT->str('max'));
79 if ($INPUT->has('srt')) {
80 $searchForm->setHiddenField('srt', $INPUT->str('srt'));
100 global $INPUT, $lang;
114 if ($INPUT->str('srt') === 'mtime') {
380 global $INPUT,
[all...]
H A DSearchState.php19 global $INPUT;
23 $this->parsedQuery['after'] = $INPUT->str('min');
26 $this->parsedQuery['before'] = $INPUT->str('max');
29 $this->parsedQuery['sort'] = $INPUT->str('srt');
H A DUserProfile.php28 global $INPUT;
32 'name' => $INPUT->post->str('fullname', $INFO['userinfo']['name'], true),
33 'mail' => $INPUT->post->str('email', $INFO['userinfo']['mail'], true),
H A DUserRegister.php25 global $INPUT;
42 ->val($INPUT->post->str('login'));
56 ->val($INPUT->post->str('fullname'));
61 ->val($INPUT->post->str('email'));
H A DUserResendPwd.php25 global $INPUT;
27 $token = preg_replace('/[^a-f0-9]+/', '', $INPUT->str('pwauth'));
/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')) {

1234