Home
last modified time | relevance | path

Searched refs:INPUT (Results 101 – 125 of 420) sorted by last modified time

12345678910>>...17

/plugin/data/_test/
H A Dhelper.test.php
/plugin/bpmnio/action/
H A Deditor.php40 global $INPUT;
77 global $INPUT;
79 if (!$INPUT->post->has('plugin_bpmnio_data')) return;
81 $TEXT = base64_decode($INPUT->post->str('plugin_bpmnio_data'));
/plugin/oauth/
H A DOAuthManager.php51 global $INPUT;
53 if (!$INPUT->get->has('code') && !$INPUT->get->has('oauth_token')) {
H A DAdapter.php224 global $INPUT;
229 if (!$INPUT->get->has('code')) return false;
230 $state = $INPUT->get->str('state', null);
231 $accessToken = $oauth->requestAccessToken($INPUT->get->str('code'), $state);
233 if (!$INPUT->get->has('oauth_token')) return false;
237 $INPUT->get->str('oauth_token'),
238 $INPUT->get->str('oauth_verifier'),
H A Dauth.php35 global $INPUT;
38 if ($INPUT->has('state') && plugin_load('helper', 'farmer')) {
39 $this->handleFarmState($INPUT->str('state'));
220 global $INPUT;
221 $url = $farmer->getAnimalURL($animal) . '/doku.php?' . $INPUT->server->str('QUERY_STRING');
/plugin/oauth/action/
H A Dlogin.php62 global $INPUT;
65 $servicename = $INPUT->str('oauthlogin');
169 global $INPUT;
176 if ($INPUT->server->str('REMOTE_USER') !== '') {
H A Duser.php66 global $INPUT;
79 $enabled = $INPUT->arr('oauth_group');
/plugin/smtp/
H A Dadmin.php24 global $INPUT;
26 if(!$INPUT->bool('send')) return;
33 if($INPUT->str('to')) $mail->to($INPUT->str('to'));
34 if($INPUT->str('cc')) $mail->cc($INPUT->str('cc'));
35 if($INPUT->str('bcc')) $mail->bcc($INPUT->str('bcc'));
52 global $INPUT;
63 $form->addElement(form_makeField('text', 'to', $INPUT->str('to'), 'To:', '', 'block'));
64 $form->addElement(form_makeField('text', 'cc', $INPUT->str('cc'), 'Cc:', '', 'block'));
65 $form->addElement(form_makeField('text', 'bcc', $INPUT->str('bcc'), 'Bcc:', '', 'block'));
/plugin/farmer/admin/
H A Dinfo.php46 global $INPUT;
63 $this->line('animals', $this->animals($INPUT->bool('list')));
H A Dnew.php40 global $INPUT;
42 if (!$INPUT->has('farmer__submit')) return;
140 global $INPUT;
142 $animalname = $INPUT->filter('trim')->str('animalname');
143 $adminsetup = $INPUT->str('adminsetup');
144 $adminpass = $INPUT->filter('trim')->str('adminPassword');
145 $template = $INPUT->filter('trim')->str('animaltemplate');
146 $aclpolicy = $INPUT->filter('trim')->str('aclpolicy');
147 $allowreg = $INPUT->str('allowreg');
H A Dplugins.php34 global $INPUT;
39 if ($INPUT->has('bulk_plugin') && $INPUT->has('state')) {
41 $plugin = $INPUT->str('bulk_plugin');
43 $this->helper->setPluginState($plugin, $animal, $INPUT->int('state'));
49 if ($INPUT->has('bulk_animal') && $INPUT->has('bulk_plugins')) {
50 $animal = $INPUT->str('bulk_animal');
51 $activePlugins = $INPUT->arr('bulk_plugins');
H A Dsetup.php29 global $INPUT;
32 if (!$INPUT->bool('farmdir')) return;
37 $farmdir = trim($INPUT->str('farmdir', ''));
63 if ($ok && $INPUT->bool('htaccess')) $ok &= $this->createHtaccess();
H A Ddelete.php37 global $INPUT;
39 if (!$INPUT->has('delete')) return;
41 if ($INPUT->filter('trim')->str('delanimal') === '') {
46 if ($INPUT->str('delanimal') != $INPUT->str('confirm')) {
51 $animaldir = DOKU_FARMDIR . $INPUT->str('delanimal');
H A Dconfig.php37 global $INPUT;
39 if (!$INPUT->has('farmconf')) return;
44 $farmconf = array_merge($farmconf, $INPUT->arr('farmconf'));
/plugin/farmer/action/
H A Dajax.php86 global $INPUT;
91 $pname = $INPUT->str('plugin');
92 $animal = $INPUT->str('ani');
/plugin/farmer/
H A Dadmin.php39 global $INPUT;
53 $this->page = $INPUT->str('sub');
/plugin/approve/action/
H A Dviewmode.php44 global $INPUT;
46 if (!$INPUT->server->str('REMOTE_USER')) return false;
56 global $INPUT;
58 if (!$INPUT->server->str('REMOTE_USER')) return false;
/plugin/approve/
H A Dadmin.php31 global $INPUT;
44 if($INPUT->str('action') && $INPUT->arr('assignment') && checkSecurityToken()) {
45 $assignment = $INPUT->arr('assignment');
47 if ($INPUT->str('action') === 'delete') {
50 } else if ($INPUT->str('action') === 'add' && !blank($assignment['assign'])) {
/plugin/odt/action/
H A Dexport.php211 global $INPUT;
225 $title = $INPUT->str('book_title');
232 if(!$title = $INPUT->str('book_title')) {
236 $docnamespace = cleanID($INPUT->str('book_ns'));
250 $depth = $INPUT->int('book_nsdepth', 0);
280 if(!$title = $INPUT->str('book_title')) {
287 } elseif($INPUT->has('selection')) {
303 $title = $INPUT->str('pdfbook_title'); //DEPRECATED
304 $title = $INPUT->str('book_title', $title, true);
331 if($INPUT->has('selection')) {
[all …]
/plugin/odt/helper/
H A Dconfig.php547 global $conf, $ID, $INPUT;
571 $url_param = $INPUT->get->str($name, $value, true);
/plugin/prosemirror/action/
H A Dajax.php51 global $INPUT, $ID;
52 $ID = $INPUT->str('id');
54 foreach ($INPUT->arr('actions') as $action) {
58 $inner = $INPUT->str('inner');
64 $inner = $INPUT->str('inner');
71 $attrs = $INPUT->arr('attrs');
87 $image = $INPUT->arr('image');
102 $attrs = json_decode($INPUT->str('attrs'), true);
157 global $INPUT;
159 if ($INPUT
[all...]
H A Deditor.php164 global $INPUT;
165 return !$INPUT->has('target') || $INPUT->str('target') === 'section';
H A Dparser.php40 global $INPUT;
41 $unparsedJSON = $INPUT->post->str('prosemirror_json');
82 global $TEXT, $INPUT;
83 if ($INPUT->server->str('REQUEST_METHOD') !== 'POST'
85 || !$INPUT->post->has('prosemirror_json')
91 $unparsedJSON = $INPUT->post->str('prosemirror_json');
/plugin/blogtng/action/
H A Dajax.php32 global $auth, $INPUT;
39 $comment->setText($INPUT->post->str('text'));
40 $comment->setName($INPUT->post->str('name'));
41 $comment->setMail($INPUT->post->str('mail'));
42 $comment->setWeb($INPUT->post->str('web'));
47 if(!$comment->getName() && $INPUT->server->str('REMOTE_USER')){
48 if($auth AND $info = $auth->getUserData($INPUT->server->str('REMOTE_USER'))) {
54 $comment->output($INPUT->post->str('tplname'));
H A Dedit.php53 global $ID, $INFO, $INPUT;
64 $blog = $INPUT->post->str('post-blog', $blog);
106 if ($INPUT->post->has('post-date')) {
153 global $ID, $INFO, $INPUT;
223 if ($INPUT->post->has('post-date')) {
275 global $INPUT;
294 $blog = $INPUT->post->str('post-blog');
366 global $INPUT;
368 $tags = $INPUT->post->arr('post-tags');
370 $tags = $INPUT->post->str('post-tags');
[all …]

12345678910>>...17