Lines Matching refs:action
20 protected $action; variable in dokuwiki\\ActionRouter
50 $ACT = $this->action->getActionName();
84 $this->action = $this->loadAction($actionname);
85 $this->checkAction($this->action);
86 $this->action->preProcess();
89 $this->action = new Plugin($actionname);
200 * @param AbstractAction $action
204 public function checkAction(AbstractAction $action) argument
209 if (in_array($action->getActionName(), $this->disabled)) {
213 $action->checkPreconditions();
221 if ($perm < $action->minimumPermission()) {
233 return $this->action;