/plugin/requiz/ |
H A D | action.php | 62 $act = $this->_act_clean($event->data); 63 if(!('save' == $act || ($this->getConf('requizreg') && 64 'register' == $act && 77 if($act == 'save'){ 124 function _act_clean($act){ argument 126 if(is_array($act)){ 127 list($act) = array_keys($act); 131 $act = strtolower($act); 132 $act = preg_replace('/[^a-z_]+/','',$act); 134 return $act;
|
/plugin/aclplusregex/_test/ |
H A D | acl.test.php |
|
/plugin/recaptcha2/ |
H A D | action.php | 118 $act = $this->_act_clean($event->data); 125 ($act == 'register' && $this->getConf('regprotect') && $_POST['save'] ) || 126 ($act == 'save' && $this->getConf('editprotect')) 134 if($act == 'save'){ 154 function _act_clean($act){ argument 156 if(is_array($act)){ 157 list($act) = array_keys($act); 161 $act = strtolower($act); 162 $act = preg_replace('/[^a-z_]+/','',$act); 164 return $act;
|
/plugin/recaptcha/ |
H A D | action.php | 136 $act = $this->_act_clean($event->data); 143 ($act == 'register' && $this->getConf('regprotect') && $_POST['save'] ) || 144 ($act == 'save' && $this->getConf('editprotect')) 152 if($act == 'save'){ 172 function _act_clean($act){ argument 174 if(is_array($act)){ 175 list($act) = array_keys($act); 179 $act = strtolower($act); 180 $act = preg_replace('/[^a-z_]+/','',$act); 182 return $act;
|
/plugin/captcha/ |
H A D | action.php | 55 * by $act alone but needs to inspect other input variables. 57 * @param string $act cleaned action mode 60 protected function needsChecking($act) 64 switch ($act) { 84 * @param string $act cleaned action mode 87 protected function abortAction($act) 91 switch ($act) { 97 return $act; 101 return $act; 155 $act 62 needs_checking($act) global() argument 89 abort_action($act) global() argument [all...] |
/plugin/statistics/ |
H A D | action.php | 22 $JSINFO['act'] = $ACT; 113 $act = $this->_act_clean($event->data); 114 if($act == 'logout') { 116 } elseif($_SERVER['REMOTE_USER'] && $act == 'login') { 216 function _act_clean($act) { argument 218 if(is_array($act)) { 219 list($act) = array_keys($act); 223 $act = strtolower($act); [all...] |
/plugin/subconfhelper/ |
H A D | style.css | 1 .act-admin div#subconfhelper ul { 5 .act-admin div#subconfhelper .vhostitem { 8 .act-admin div#subconfhelper .vhostitem label { 13 .act-admin div#subconfhelper .vhostitem .other { 15 .act-admin div#subconfhelper .vhostitem .selection { 20 .act-admin div#subconfhelper .vhostitem .selection label {
|
/plugin/saveandedit/ |
H A D | action.php | 69 [$act] = array_keys($event->data); 71 $act = $event->data; 86 if ($this->previousAct === 'save' && $act === 'draftdel') { 120 $this->previousAct = $act; 122 } elseif ($act === 'save' && actionOK($act) && act_permcheck($act) == 'save' && checkSecurityToken()) { 123 $event->data = act_save($act);
|
/plugin/dokutranslate/ |
H A D | action.php | 172 $act = $event->data; 175 $act = act_clean($act); 176 $act = act_permcheck($act); 183 $ACT = $act = 'edit'; 186 if ($act == 'save') { 210 $ACT = act_save($act); 257 $ACT = act_save($act); 268 } else if ($act == 'revert') { 283 $ACT = act_revert($act); 354 $act = $event->data['preact']; [all …]
|
/plugin/dwspecialist/ |
H A D | action.php | 46 $act=tpl_get_action($action); 47 if ($act) { 48 $name = (key_exists('btn_'.$act['type'], $lang)) ? $lang['btn_'.$act['type']] : $action;
|
H A D | syntax.php | 103 $act=array( 'params' => array('do' => $action, 'rev' => $rev), 106 $line.=$crlf.$listoffset.$prolog."[[".$id."?".http_build_query ($act['params'])."|".$name."]]"; 121 $act=tpl_get_action($action); //$act['params']['do']; is now defined 122 if ($act) { 123 $name=(key_exists('btn_'.$act['type'], $lang)) ? $lang['btn_'.$act['type']] : $action; 125 $act['params']['rev']=$rev; 128 … $line.=$crlf.$listoffset.$prolog."[[".$id."?".http_build_query ($act['params'])."|".$name."]]";
|
/plugin/preregister/ |
H A D | action.php | 49 $act = $this->_act_clean($event->data); 50 if($act != 'preregistercheck') return; 225 function _act_clean($act){ argument 227 if(is_array($act)){ 228 list($act) = array_keys($act); 232 $act = strtolower($act); 233 $act = preg_replace('/[^a-z_]+/','',$act); 235 return $act;
|
/plugin/components/lib/ |
H A D | action_manager.php | 82 public function act(&$action) { function in Doku_Action_Manager 106 return self::act($action); 116 return $this->act($action); 124 return $this->act($action); 140 foreach ($action as $act => $x) 141 $result .= $this->render($act);
|
/plugin/elasticsearch/ |
H A D | cli.php | 101 /** @var action_plugin_elasticsearch_indexing $act */ 102 $act = plugin_load('action', 'elasticsearch_indexing'); 112 $act->index_page($ID); 122 /** @var action_plugin_elasticsearch_indexing $act */ 123 $act = plugin_load('action', 'elasticsearch_indexing'); 134 $act->index_file($id);
|
/plugin/maintenance/ |
H A D | action.php | 33 $act = act_clean($ACT); 34 if (!in_array($act, $this->disallowed)) return; 35 msg('Command disabled: '.htmlspecialchars($act),-1);
|
/plugin/indexmenu/ |
H A D | admin.php |
|
/plugin/labeled/action/ |
H A D | change.php | 8 public static $act = 'labeled_do'; variable in action_plugin_labeled_change 39 if (!isset($_REQUEST[action_plugin_labeled_change::$act])) return; 40 $do = $_REQUEST[action_plugin_labeled_change::$act];
|
/plugin/loglog/helper/ |
H A D | alert.php | 131 $act = true; 134 return $act; 145 $act = false; 150 return $act;
|
/plugin/components/action/ |
H A D | action.php | 15 function act(&$event, $param) { function in action_plugin_components_action 17 if ($action_manager && $action_manager->act($event->data))
|
/plugin/passpolicy/ |
H A D | action.php | 157 $act = act_clean($event->data); 158 if ($act != 'resendpwd') return; 186 $act = act_clean($event->data); 187 if ($act != 'resendpwd') return;
|
/plugin/html2pdf/snorriheim/ |
H A D | main.php | 79 foreach(array('edit', 'history', 'subscribe', 'subscribens') as $act) { 82 if(tpl_actionlink($act)) {
|
/plugin/struct/action/ |
H A D | entry.php | 65 $act = act_clean($event->data); 66 if (!in_array($act, ['save', 'preview'])) return false; 85 if (!$this->validated && $act == 'save') {
|
/plugin/fckg/action/ |
H A D | meta.php | 61 $act = $event->data; 62 if(is_string($act) && $act != 'edit') { 115 $act = $event->data; 117 if(is_string($act) && $act != 'edit') {
|
/plugin/adfs/ |
H A D | action.php | 25 $act = act_clean($event->data); 26 if ($act != 'adfs') return;
|
/plugin/fedauth/classes/usr/ |
H A D | fa_login.usr.class.php | 161 $act = $do; 165 $act = 'fedauth'; 169 … $out .= '<a href="'.wl($ID, array('do'=> $act, 'sectok' => $sectok)).'&fa['.$cmd.']['.$id.']">'
|