Home
last modified time | relevance | path

Searched refs:ActionDisabledException (Results 1 – 8 of 8) sorted by path

/dokuwiki/inc/Action/Exception/
H A DActionDisabledException.php6 * Class ActionDisabledException
15 class ActionDisabledException extends ActionException class
/dokuwiki/inc/Action/
H A DLogout.php5 use dokuwiki\Action\Exception\ActionDisabledException; alias
31 if (!$auth->canDo('logout')) throw new ActionDisabledException();
H A DProfile.php7 use dokuwiki\Action\Exception\ActionDisabledException;
33 if (!$auth->canDo('Profile')) throw new ActionDisabledException();
6 use dokuwiki\Action\Exception\ActionDisabledException; global() alias
H A DProfileDelete.php6 use dokuwiki\Action\Exception\ActionDisabledException; alias
31 if (!$auth->canDo('delUser')) throw new ActionDisabledException();
H A DRegister.php7 use dokuwiki\Action\Exception\ActionDisabledException;
34 if (isset($conf['openregister']) && !$conf['openregister']) throw new ActionDisabledException();
35 if (!$auth->canDo('addUser')) throw new ActionDisabledException();
6 use dokuwiki\Action\Exception\ActionDisabledException; global() alias
H A DResendpwd.php7 use dokuwiki\Action\Exception\ActionDisabledException;
35 throw new ActionDisabledException(); //legacy option
36 if (!$auth->canDo('modPass')) throw new ActionDisabledException();
6 use dokuwiki\Action\Exception\ActionDisabledException; global() alias
H A DSubscribe.php6 use dokuwiki\Action\Exception\ActionDisabledException; alias
33 if (isset($conf['subscribers']) && !$conf['subscribers']) throw new ActionDisabledException();
/dokuwiki/inc/
H A DActionRouter.php7 use dokuwiki\Action\Exception\ActionDisabledException;
97 if ($e instanceof ActionDisabledException) {
201 * @throws ActionDisabledException
210 throw new ActionDisabledException();
6 use dokuwiki\Action\Exception\ActionDisabledException; global() alias