Home
last modified time | relevance | path

Searched refs:INPUT (Results 1 – 25 of 420) sorted by relevance

12345678910>>...17

/plugin/tagfilter/_test/
H A Dajax.test.php25 global $INPUT;
28 $INPUT->set('id', 0);
29 $INPUT->set('form', json_encode(array()));
30 $INPUT->set('ns', json_encode('test:plugin_tagfilter:tags'));
31 $INPUT->set('flags', json_encode(array()));
32 $INPUT->set('pagesearch', json_encode(array()));
52 global $INPUT;
54 $INPUT->set('id', 0);
55 $INPUT->set('form', '[["cat1:blorg","cat2:a","cat3:1","cat2:b","cat3:2"]]');
56 $INPUT
[all...]
/plugin/settingstree/
H A Daction.php31 global $INPUT; //available since release 2012-10-13 "Adora Belle"
35 switch($INPUT->str('operation')){
41 switch ($INPUT->str('showtype','normal')){
44 …'html' => $helper->showExportHtml($INPUT->str('pluginname'),':'.ltrim($INPUT->str('path'),':'),$IN…
45 'path'=> ':'.ltrim($INPUT->str('path'),':'),
51 'html' => $helper->showHtml($INPUT->str('pluginname'),':'.ltrim($INPUT->str('path'),':')),
52 'path'=> ':'.ltrim($INPUT->str('path'),':')
62 $data = array('html' => $helper->showHierarchy($INPUT->str('pluginname'),$INPUT->str('key')));
70 …$html = $helper->saveLevel($INPUT->str('pluginname'),':'.ltrim($INPUT->str('path'),':'),$INPUT->ar…
80 …$html = $helper->exportLevel($INPUT->str('pluginname'),':'.ltrim($INPUT->str('path'),':'),$INPUT->…
[all …]
/plugin/explorertree/
H A Daction.php31 global $INPUT; //available since release 2012-10-13 "Adora Belle"
35 switch($INPUT->str('operation')){
41 if (!($route = $helper->loadRoute($INPUT->str('route'),$INPUT->arr('loader')))){
42 $data = array('error'=>true,'msg'=>"Can't load route '".$INPUT->str('route')."'!");
44 …$data = array('html' => $helper->htmlExplorer($INPUT->str('route'),ltrim(':'.$INPUT->str('itemid')…
52 $route = $helper->loadRoute($INPUT->str('route'),$INPUT->arr('loader'));
53 if (!$route || !is_callable(@$route['callbacks'][$INPUT->str(event)])) {
54 …data = array('error'=>true,'msg'=>"Can't load callback '".$INPUT->str('event')."'for '".$INPUT->st…
56 …$data = @call_user_func_array($route['callbacks'][$INPUT->str(event)],array($INPUT->str('itemid'))…
57 …if (!is_array($data)) $data = array('error'=>true,'msg'=>"Callback for '".$INPUT->str('event')."' …
[all …]
/plugin/loglog/
H A Daction.php124 global $INPUT;
126 $page = $INPUT->str('page');
228 global $INPUT;
232 $this->logAdmin([$INPUT->str('act') . ' ' . $INPUT->str('ext')], 'extension');
243 global $INPUT;
246 if ($INPUT->str('page') === 'config'
247 && $INPUT->bool('save') === true
248 && !empty($INPUT->arr('config'))
255 if ($INPUT->post->has('fn')) {
270 if ($INPUT->str('page') === 'acl' && $INPUT->has('cmd')) {
[all …]
/plugin/swiftmail/
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->to($INPUT->str('cc'));
35 if($INPUT->str('bcc')) $mail->to($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/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/advanced/admin/
H A Dexport.php40 global $INPUT;
42 if (!$INPUT->has('cmd')) {
50 $cmd = $INPUT->extract('cmd')->str('cmd');
62 global $INPUT;
89 global $INPUT;
91 $step = $INPUT->extract('export')->str('export');
160 global $INPUT;
173 … $pages = $this->getPagesFromNamespace($INPUT->str('ns'), ($INPUT->str('include-sub-ns') ? 1 : 0));
232 global $INPUT;
237 switch ($INPUT->str('step')) {
[all …]
/plugin/tagging/action/
H A Dmain.php93 global $INPUT;
94 $tags = $INPUT->arr('tag', (array)$INPUT->str('tag'));
95 $lang = $INPUT->str('lang');
123 global $INPUT;
129 $data = $INPUT->arr('tagging');
152 global $INPUT;
157 $search = $INPUT->str('term');
172 global $INPUT;
189 if (!$INPUT
[all...]
/plugin/fksnewsfeed/
H A Daction.php44 global $INPUT;
65 global $INPUT;
108 global $INPUT;
109 if (!$INPUT->str('news-id')) {
113 $newsId = $INPUT->str('news-id');
140 global $INPUT;
188 global $INPUT;
207 global $INPUT;
216 global $INPUT;
234 global $INPUT;
[all …]
/plugin/bpmnioeditor/action/
H A Dbpmnioeditor.php81 global $INPUT;
101 if(file_exists(mediaFN($INPUT->str('name')))){
107 if(strlen($INPUT->str('name')) > 0){
108 if(auth_quickaclcheck(cleanID(substr($INPUT->str('name'), 0, -5))) >= $checkFor){
114 …if(strlen($INPUT->str('name')) > 0 && strlen($INPUT->str('type')) > 0 && array_key_exists($INPUT->…
115 …if(auth_quickaclcheck(cleanID(substr($INPUT->str('name'), 0, -5))) >= $authLookup[$INPUT->str('typ…
124 global $INPUT;
127 $ID = cleanID($INPUT->str('name'));
132 file_put_contents($conf['tmpdir'].'/'.$tmpFilename, $INPUT->str('newXML'));
135 'name' => $INPUT->str('name'),
/plugin/tablelayout/action/
H A Daction.php45 global $INPUT;
51 $form->setHiddenField('tablelayout', $INPUT->str('tablelayout'));
55 $form->addHidden('tablelayout', $INPUT->str('tablelayout'));
61 global $TEXT, $INPUT;
67 $newSyntax = $helper->buildSyntaxFromJSON($INPUT->str('tablelayout'));
73 if ($INPUT->post->has('edittable__new')) {
83 if ($INPUT->post->has('edittable__new')) {
86 $INPUT->post->set('tablelayout', json_encode(array(
110 global $RANGE, $INPUT;
111 if (!$INPUT->has('tablelayout')) {
[all …]
/plugin/blogtng/action/
H A Dnew.php42 global $TEXT, $INPUT;
49 if(!$INPUT->str('new-title')){
55 $newId = $tools->mkpostid($INPUT->str('new-format'), $INPUT->str('new-title'));
60 'post-blog' => $INPUT->post->str('post-blog'),
61 'post-tags' => $INPUT->post->str('post-tags'),
62 'post-commentstatus' => $INPUT->post->str('post-commentstatus'),
63 'new-format' => $INPUT->post->str('new-format'),
64 'new-title' => $INPUT->post->str('new-title')
69 $TEXT = $this->prepareTemplateNewEntry($newId, $INPUT->str('new-title'));
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 Dcomments.php49 global $INFO, $ID, $INPUT, $BLOGTNG;
53 if ($INPUT->has('btngo')) {
54 $this->commenthelper->optin($INPUT->str('btngo'));
58 if ($INPUT->has('btngu')) {
59 $this->commenthelper->unsubscribe_by_key(md5($ID), $INPUT->str('btngu'));
66 … $comment->setSource($INPUT->post->str('comment-source')); //from: comment, pingback or trackback
67 $name = $INPUT->post->str('comment-name');
69 $mail = $INPUT->post->str('comment-mail');
71 $web = $INPUT->post->str('comment-web');
/plugin/captcha/
H A Daction.php62 global $INPUT;
69 return $INPUT->bool('save');
89 global $INPUT;
96 $INPUT->post->set('save', false);
130 global $INPUT;
132 if (!$INPUT->bool('u')) return; // this login was not triggered by a form
153 global $INPUT;
159 if (!$this->getConf('forusers') && $INPUT->server->str('REMOTE_USER')) {
176 global $INPUT;
191 if (!$this->getConf('forusers') && $INPUT
[all...]
/plugin/custombuttons/
H A Dadmin.php59 global $INPUT;
61 if ($INPUT->has('add')) {
69 if ($INPUT->str('pretag') != '' && $INPUT->str('posttag') != '') {
73 'label' => $INPUT->str('label'),
74 'code' => $INPUT->str('code'),
76 'pretag' => $INPUT->str('pretag'),
77 'posttag' => $INPUT->str('posttag'),
78 'icon' => $INPUT->str('icon'),
83 } elseif ($INPUT->has('delete')) {
87 unset($conf[$INPUT->int('delete')]);
/plugin/twofactor/action/
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'));
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...]
/plugin/watchcycle/
H A Dadmin.php47 global $INPUT;
83 if ($INPUT->str('sortby') == $header) {
84 if ($INPUT->int('desc') == 0) {
99 if ($INPUT->str('filter') != '') {
101 $q_args[] = '%' . $INPUT->str('filter') . '%';
103 if ($INPUT->has('outdated')) {
112 if ($INPUT->has('sortby') && in_array($INPUT->str('sortby'), $headers)) {
113 $q .= ' ORDER BY ' . $INPUT->str('sortby');
114 if ($INPUT
[all...]
/plugin/siteexport/inc/
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 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/edittable/action/
H A Dnewtable.php46 global $INPUT;
49 if (!$INPUT->post->has('edittable__new')) return;
57 $fields = $INPUT->post->arr('edittable__new');
63 $INPUT->post->set('edittable__new', $fields);
70 $INPUT->post->set('target', 'table');
74 $INPUT->post->set('target', 'table');
82 $INPUT->post->set('target', 'section');
88 $INPUT->post->set('target', 'section');
/plugin/structodt/
H A Daction.php93 global $INPUT;
96 $method = 'action_' . $INPUT->str('action');
151 global $INPUT;
159 $templates = json_decode($INPUT->str('template'));
160 $ext = $INPUT->str('filetype');
170 $schema = $INPUT->str('schema');
171 $pid = $INPUT->str('pid');
172 $rev = $INPUT->str('rev');
173 $rid = $INPUT->str('rid');
174 $filename = $INPUT
[all...]
/plugin/issuelinks/action/
H A Dajax.php61 global $INPUT, $INFO;
67 $serviceId = $INPUT->str('servicename');
73 $project = $INPUT->str('project');
75 if ($INPUT->has('hookid')) {
106 global $INPUT;
112 $serviceId = $INPUT->str('servicename');
113 $organisation = $INPUT->str('org');
189 global $INPUT;
190 $serviceName = $INPUT->str('servicename');
191 $projectKey = $INPUT->str('project');
[all …]
/plugin/diagrams/action/
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');

12345678910>>...17