Home
last modified time | relevance | path

Searched refs:INPUT (Results 1 – 25 of 420) sorted by last modified time

12345678910>>...17

/plugin/twofactoremail/
H A Daction.php37 global $INPUT;
39 if($INPUT->bool('init')) {
45 if ($INPUT->has('verify')) {
46 if ($this->checkCode($INPUT->str('verify'))) {
/plugin/twofactor/
H A Dadmin.php31 global $INPUT;
33 $this->filter = $INPUT->arr('filter');
34 $this->start = $INPUT->int('start');
40 global $INPUT;
42 if ($INPUT->has('reset') && checkSecurityToken()) {
43 $userdel = $INPUT->extract('reset')->str('reset');
44 if ($userdel == $INPUT->server->str('REMOTE_USER')) {
55 if ($INPUT->has('search')) {
H A DManager.php130 global $INPUT;
131 $this->user = $INPUT->server->str('REMOTE_USER');
313 global $INPUT;
323 if($INPUT->server->has('HTTP_SEC_FETCH_DEST') && $INPUT->server->str('HTTP_SEC_FETCH_DEST') !== 'document'){
/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');
H A Dprofile.php37 global $INPUT;
40 if (!$INPUT->server->has('REMOTE_USER')) return;
69 global $INPUT;
72 if (!$INPUT->server->has('REMOTE_USER')) {
78 if (strtolower($INPUT->server->str('REQUEST_METHOD')) == 'post') {
98 global $INPUT;
103 if ($INPUT->has('twofactor_setup')) {
122 global $INPUT;
126 if ($INPUT->has('twofactor_optout') && $this->getConf('optinout') === 'optout') {
127 $manager->userOptOutState($INPUT
[all...]
H A Dresendpwd.php51 global $INPUT;
52 if ($INPUT->has('pwauth')) return; // we're already in token phase, don't interrupt
53 if (!$INPUT->str('login')) return; // no user given yet, don't interrupt
55 $user = $INPUT->str('login');
62 $code = $INPUT->post->str('2fa_code');
63 $providerID = $INPUT->post->str('2fa_provider');
93 global $INPUT;
95 $providerID = $INPUT->post->str('2fa_provider');
102 $form->setHiddenField('login', $INPUT->str('login'));
/plugin/attribute/
H A Dhelper.php150 global $INFO, $ACT, $USERINFO, $INPUT;
151 if ($ACT == 'login' && !$USERINFO && $user == $INPUT->str('u')) {
/plugin/dbquery/
H A Dhelper.php130 global $INPUT;
133 ':user' => $INPUT->server->str('REMOTE_USER'),
/plugin/siteexport/inc/
H A Dmpdf.php27 global $INPUT;
33 $pagesize = $INPUT->str('pagesize', $dw2pdf->getConf('pagesize'), true);
34 $orientation = $INPUT->str('orientation', $dw2pdf->getConf('orientation'), true);
H A Dfunctions.php783 global $INPUT;
H A Dhttpproxy.php87 global $auth, $INPUT;
93 if ($secondAttempt && !isset($this->user) && $INPUT->str('u') && $INPUT->str('p')) {
96 $this->user = $INPUT->str('u');
97 $this->pass = $INPUT->str('p');
H A Dpdfgenerator.php19 global $INPUT;
53 $mpdf->dpi = $INPUT->int('dpi', 96, true);
54 $mpdf->img_dpi = $INPUT->int('dpi', 96, true);
H A Dsettings.php48 global $ID, $conf, $INPUT;
51 $debugLevel = $INPUT->int('debug', -1, true);
62 $this->pattern = $INPUT->str('pattern');
72 if ( $INPUT->has( 'disableCache' ) ) {
88 $this->exportLinkedPages = $INPUT->bool( 'exportLinkedPages', true );
90 $this->namespace = $functions->getNamespaceFromID( $INPUT->str('ns'), $PAGE );
91 $this->addParams = $INPUT->bool( 'addParams' );
93 $this->useTOCFile = $INPUT->bool( 'useTocFile' );
98 $ens = $INPUT->str( 'ens' );
103 $this->defaultLang = $INPUT->str( 'defaultLang', $conf['lang'], true );
[all …]
/plugin/siteexport/action/
H A Dajax.php213 global $INPUT;
220 …$maxRedirectNumber = ceil((count($this->__get_siteexport_list($INPUT->str('ns'), true))*5)/$this->…
252 global $INPUT;
257 $data = $this->__get_siteexport_list_and_init_tocs($INPUT->str('ns'));
311 global $INPUT;
320 $status = $this->__siteexport_add_site($INPUT->str('site'));
349 global $conf, $INPUT;
359 switch ($INPUT->int('depthType')) {
381 case 2: $depth = $INPUT->int('depth');
H A Dpdfstyles.php21 global $INPUT;
23 if ( !$INPUT->has('pdfExport') ) { return true; }
38 global $INPUT;
41 $event->data->key .= $INPUT->str('pdfExport', '0');
55 global $INPUT, $conf;
H A Daggregate.php32 global $ID, $INFO, $conf, $INPUT;
37 …eexport']) && $INFO['meta']['siteexport']['hasaggregator'] == true) && ( $INPUT->has( 'siteexport_…
39 $exportBase = $INPUT->str('baseID');
59 if ( $INPUT->bool('exportSelectedVersionOnly' ) ) {
62 if ( $INPUT->has( 'mergecompare_start' ) && $INPUT->has( 'mergecompare_end' ) ) {
63 …ctions->__getOrderedListOfPagesForStartEnd($lookupNS, $INPUT->int( 'mergecompare_start' ), $INPUT-…
69 $includeSelected = $INPUT->str('includeSelectedVersion', 'true', true ) === 'true';
91 if( $INPUT->bool('mergehint', true, true ) ) {
120 $renderer = $INPUT->str('renderer', $conf['renderer_xhtml'], true);
121 $INPUT->set('do', 'export_' . $renderer);
/plugin/siteexport/exe/
H A Dsiteexportmanager.php18 global $INFO, $JSINFO, $INPUT, $ID, $conf;
20 $NS = cleanID($INPUT->str('ns'));
/plugin/structpublish/action/
H A Dpublish.php26 global $INPUT;
28 $in = $INPUT->arr('structpublish');
38 $newRevision = $helper->saveRevision(key($in), $INPUT->str('version'));
/plugin/structpublish/helper/
H A Ddb.php101 global $INPUT;
110 $userId = $args[1] ?? $INPUT->server->str('REMOTE_USER');
131 global $INPUT;
135 $userId = $INPUT->server->str('REMOTE_USER');
/plugin/structpublish/
H A Dadmin.php35 global $INPUT;
45 if ($INPUT->str('action') && $INPUT->arr('assignment') && checkSecurityToken()) {
46 $assignment = $INPUT->arr('assignment');
48 if ($INPUT->str('action') === 'delete') {
57 } elseif ($INPUT->str('action') === 'add') {
/plugin/diagrams/action/
H A Daction.php78 global $INPUT;
80 $svg = $INPUT->str('svg'); // raw svg
81 $png = $INPUT->str('png'); // data uri
124 global $INPUT;
127 $cacheName = $INPUT->str('pngcache');
128 $media = cleanID($INPUT->str('media'));
129 $id = cleanID($INPUT->str('id'));
H A Dmediafile.php41 global $INPUT;
42 $mediaId = $INPUT->str('mediaId');
60 global $INPUT;
61 $diagrams = (array)json_decode($INPUT->str('diagrams'));
91 global $INPUT;
92 $diagram = $INPUT->str('diagram');
120 global $INPUT;
121 $ns = $INPUT->str('ns');
H A Dembed.php43 global $INPUT;
45 $id = $INPUT->str('id');
46 $pos = $INPUT->int('pos');
47 $len = $INPUT->int('len');
87 global $INPUT;
89 $id = $INPUT->str('id');
90 $svg = $INPUT->str('svg');
91 $pos = $INPUT->int('pos');
92 $len = $INPUT->int('len');
/plugin/diagrams/syntax/
H A Dembed.php69 global $INPUT;
88 if ($INPUT->int('svg') === $this->count++) {
/plugin/struct/meta/
H A DCSVPageImporter.php140 global $INPUT;
141 if ($INPUT->bool('createPage')) {

12345678910>>...17