Searched refs:actionname (Results 1 – 4 of 4) sorted by relevance
18 protected $actionname; variable in dokuwiki\\Action\\AbstractAction23 * @param string $actionname the name of this action (see getActionName() for caveats)25 public function __construct($actionname = '') argument27 if ($actionname !== '') {28 $this->actionname = $actionname;31 $this->actionname = strtolower((new \ReflectionClass($this))->getShortName());78 throw new FatalException('No content for Action ' . $this->actionname);91 return $this->actionname;
30 $evt = new Event('TPL_ACT_UNKNOWN', $this->actionname);32 msg('Failed to handle action: ' . hsc($this->actionname), -1);
52 $mode = substr($this->actionname, 7);
73 …* @param string $actionname this is passed as a reference to $ACT, for plugin backward compatibili…76 protected function setupAction(&$actionname) argument78 $presetup = $actionname;82 $evt = new Event('ACTION_ACT_PREPROCESS', $actionname);84 $this->action = $this->loadAction($actionname);89 $this->action = new Plugin($actionname);94 $actionname = $e->getNewAction();107 $this->transitionAction($presetup, $actionname);109 msg('Action unknown: ' . hsc($actionname), -1);110 $actionname = 'show';[all …]