Home
last modified time | relevance | path

Searched refs:INPUT (Results 76 – 100 of 420) sorted by relevance

12345678910>>...17

/plugin/lms/
H A Daction.php33 global $INPUT;
35 $user = $INPUT->server->str('REMOTE_USER');
54 global $INPUT;
57 $user = $INPUT->server->str('REMOTE_USER');
65 $action = $INPUT->str('lms');
99 global $INPUT;
111 $search = $INPUT->str('user');
H A Dadmin.php29 global $INPUT;
38 if (!$INPUT->str('user')) return;
42 $list = $hlp->getUserLessons($INPUT->str('user'));
44 echo sprintf('<h2>' . $this->getLang('status') . '</h2>', hsc($INPUT->str('user')));
/plugin/struct/admin/
H A Dassignments.php49 global $INPUT;
59 if ($INPUT->str('action') && $INPUT->arr('assignment') && checkSecurityToken()) {
60 $assignment = $INPUT->arr('assignment');
62 if ($INPUT->str('action') === 'delete') {
65 } elseif ($INPUT->str('action') === 'add') {
/plugin/davcal/action/
H A Dajax.php27 global $INPUT;
29 $action = trim($INPUT->post->str('action'));
30 $id = trim($INPUT->post->str('id'));
31 $page = trim($INPUT->post->str('page'));
32 $params = $INPUT->post->arr('params');
100 $startDate = $INPUT->post->str('start');
101 $endDate = $INPUT->post->str('end');
102 $timezone = $INPUT->post->str('timezone');
/plugin/twofactor/action/
H A Dlogin.php62 global $INPUT;
67 $INPUT->str('2fa_code'),
68 $INPUT->str('2fa_provider'),
122 global $INPUT;
123 $providerID = $INPUT->str('2fa_provider');
139 global $INPUT;
142 if (basename($INPUT->server->str('SCRIPT_NAME')) == DOKU_SCRIPT) return;
148 $INPUT->server->remove('REMOTE_USER');
/plugin/ipban/
H A Dadmin.php26 global $INPUT;
28 $ip = trim($INPUT->str('ip'));
35 $newban = $ip . "\t" . time() . "\t" . $INPUT->server->str('REMOTE_USER');
36 $cause = trim(preg_replace('/[\n\r\t]+/', '', $INPUT->str('cause')));
43 $delip = $INPUT->extract('delip')->str('delip');
/plugin/drawio/
H A Daction.php55 global $INPUT; //available since release 2012-10-13 "Adora Belle"
56 $name = $INPUT->str('imageName');
57 $action = $INPUT->str('action');
66 global $INPUT;
69 $user = $INPUT->server->str('REMOTE_USER');
103 $content = $INPUT->str('content');
149 $content = $INPUT->str('content');
/plugin/do/
H A Daction.php54 global $INPUT;
62 if ($INPUT->server->has('REMOTE_USER')) {
102 global $INPUT;
104 if (!$INPUT->server->has('REMOTE_USER')) {
109 $user = $INPUT->server->str('REMOTE_USER');
134 global $INPUT;
141 if ($INPUT->server->has('REMOTE_USER')) {
/plugin/confmanager/configTypes/
H A DConfigManagerTwoLineConfigCascade.php30 global $INPUT;
32 $keys = $INPUT->arr('keys');
33 $values = $INPUT->arr('values');
119 global $INPUT;
120 $newKey = $INPUT->arr('newKey');
121 $newValue = $INPUT->arr('newValue');
H A DConfigManagerTwoLine.php82 global $INPUT;
83 $keys = $INPUT->arr('keys');
84 $values = $INPUT->arr('values');
85 $newKey = $INPUT->arr('newKey');
86 $newValue = $INPUT->arr('newValue');
/plugin/asyncsearch/
H A Dpagelookup.php33 global $ACT, $INPUT;
35 if ( $event->data === 'asyncsearch' && $INPUT->str('pluginID') == 'pagelookup' ) {
36 $this->handle_ft_pageLookup( $INPUT->str('term') );
38 if ( $event->data === 'asyncsearch' && $INPUT->str('pluginID') == 'pagesearch' ) {
39 $this->handle_ft_pageSearch( $INPUT->str('term') );
/plugin/aichat/
H A Daction.php38 global $INPUT;
43 $question = $INPUT->post->str('question');
44 $history = json_decode((string)$INPUT->post->str('history'), null, 512, JSON_THROW_ON_ERROR);
85 'ip' => $INPUT->server->str('REMOTE_ADDR'),
86 'user' => $INPUT->server->str('REMOTE_USER'),
/plugin/captcha/_test/
H A DHelperTest.php
/plugin/tablelayout/action/
H A Dprint.php47 global $INPUT, $ID;
48 list(, $table, ) = rawWikiSlices($INPUT->str('range'), $ID);
52 if ($INPUT->str('colwidth')) {
56 'colwidth' => explode(',', $INPUT->str('colwidth')),
/plugin/submgr/
H A Dadmin.php36 global $INPUT;
41 if ($INPUT->has('d')) {
43 $new = $INPUT->arr('d');
51 if ($INPUT->has('rm')) {
53 $this->hlp->removeRule($INPUT->str('rm'));
/plugin/adfs/
H A Dadmin.php14 global $INPUT;
15 if ($INPUT->str('url')) {
17 $xml = $http->get($INPUT->str('url'));
23 } elseif ($INPUT->has('xml')) {
25 $this->xml = $INPUT->str('xml');
/plugin/diffpreview/
H A Daction.php146 global $INFO, $ID, $INPUT, $conf;
163 if (!$INPUT->post->has('wikitext')) return;
171 'prefix' => substr($INPUT->post->str('prefix'), 0, -1),
172 'text' => $INPUT->post->str('wikitext'),
173 'suffix' => $INPUT->post->str('suffix'),
174 'date' => $INPUT->post->int('date'),
/plugin/filelisting/action/
H A Dajax.php40 global $INPUT;
42 $ns = $INPUT->str('namespace');
43 $baseNs = $INPUT->str('baseNamespace');
49 $elements = $filelisting->getFilesRows($ns, $lvl, $INPUT->bool('filesOnly'));
/plugin/bookcreator/action/
H A Dhandleselection.php44 global $INPUT;
51 $action = $INPUT->post->str('action', '', true);
57 $title = $INPUT->post->str('savedselectionname');
61 $page = $INPUT->post->str('savedselectionname');
65 $page = $INPUT->post->str('savedselectionname');
69 $namespace = $INPUT->post->str('ns');
70 $recursive = $INPUT->post->str('r');
90 global $INPUT;
92 $selection = json_decode($INPUT->post->str('selection', '', true), true);
/plugin/struct/meta/
H A DSearchConfigParameters.php30 * Initializes the dynamic parameters from $INPUT
36 global $INPUT;
41 if ($INPUT->has(self::$PARAM_SORT)) {
42 [$colname, $sort] = $confHlp->parseSort($INPUT->str(self::$PARAM_SORT));
46 if ($INPUT->has(self::$PARAM_FILTER)) {
47 foreach ($INPUT->arr(self::$PARAM_FILTER) as $colcomp => $filter) {
53 if ($INPUT->has(self::$PARAM_OFFSET)) {
54 $this->setOffset($INPUT->int(self::$PARAM_OFFSET));
/plugin/structat/action/
H A Dcache.php37 global $INPUT;
50 $INPUT->has(SearchConfigAtParameters::$PARAM_AT)
56 $user_key = ';' . $INPUT->server->str('REMOTE_USER');
87 global $INPUT;
95 if ($INPUT->has($key)) {
/plugin/twofactorsmsappliance/
H A Dhelper.php44 global $INPUT;
45 $phone = $INPUT->str('smsappliance_phone', '');
47 if ($INPUT->bool('smsappliance_disable', false) || $phone === '') {
56 if ($INPUT->bool('smsappliance_send', false)) {
59 $otp = $INPUT->str('smsappliance_verify', '');
/plugin/advanced/admin/
H A Dconfig.php48 global $INPUT;
58 $cmd = $INPUT->extract('cmd')->str('cmd');
75 global $INPUT;
79 $file = $INPUT->str('file');
80 $tab = $INPUT->str('tab');
181 global $INPUT;
190 $content_new = cleanText($INPUT->post->str('content'));
337 global $INPUT;
361 if ($INPUT->str('file') == $file) {
542 global $INPUT;
[all …]
/plugin/owncloud/exe/
H A Dfetch.php23 $fileID = $INPUT->int('fileid');
50 $width = $INPUT->int('w');
51 $height = $INPUT->int('h');
52 $token = $INPUT->str('tok');
/plugin/forceuserchange/
H A Daction.php80 global $USERINFO, $auth, $INPUT;
82 if ($user && $user !== $INPUT->server->str('REMOTE_USER')) {
90 global $INPUT;
94 …return !empty($INPUT->server->str('REMOTE_USER')) && !$has_group; // users not having the group ar…
130 global $auth, $INPUT;
133 $event->data['params'][0] == $INPUT->server->str('REMOTE_USER') &&

12345678910>>...17