Home
last modified time | relevance | path

Searched refs:actionname (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/inc/Action/
H A DAbstractAction.php18 protected $actionname; variable in dokuwiki\\Action\\AbstractAction
23 * @param string $actionname the name of this action (see getActionName() for caveats)
25 public function __construct($actionname = '') argument
27 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;
H A DPlugin.php30 $evt = new Event('TPL_ACT_UNKNOWN', $this->actionname);
32 msg('Failed to handle action: ' . hsc($this->actionname), -1);
H A DExport.php52 $mode = substr($this->actionname, 7);
/dokuwiki/inc/
H A DActionRouter.php73 …* @param string $actionname this is passed as a reference to $ACT, for plugin backward compatibili…
76 protected function setupAction(&$actionname) argument
78 $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 …]