Home
last modified time | relevance | path

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

/dokuwiki/inc/Action/Exception/
H A DActionException.php19 protected $newaction; variable in dokuwiki\\Action\\Exception\\ActionException
30 * @param string|null $newaction the action that should be used next
33 public function __construct($newaction = null, $message = '') argument
37 if (is_null($newaction)) {
39 $newaction = 'redirect';
41 $newaction = 'show';
45 $this->newaction = $newaction;
55 return $this->newaction;