Home
last modified time | relevance | path

Searched refs:AuthPlugin (Results 1 – 25 of 37) sorted by relevance

12

/dokuwiki/_test/mock/
H A DAuthPlugin.php8 class AuthPlugin extends \dokuwiki\Extension\AuthPlugin { class
H A DAuthCaseInsensitivePlugin.php8 class AuthCaseInsensitivePlugin extends AuthPlugin {
H A DAuthDeletePlugin.php8 class AuthDeletePlugin extends AuthPlugin {
/dokuwiki/lib/plugins/usermanager/_test/
H A DRemoteApiTest.php42 $auth = new AuthPlugin();
71 $auth = new AuthPlugin();
95 $auth = new AuthPlugin();
119 $auth = new AuthPlugin();
143 $auth = new AuthPlugin();
167 $auth = new AuthPlugin(['addUser' => false]);
192 $auth = new AuthPlugin();
224 $auth = new AuthPlugin();
237 $auth = new AuthPlugin();
247 $auth = new AuthPlugin(['delUser' => false]);
H A DAuthPlugin.php11 class AuthPlugin extends \dokuwiki\Extension\AuthPlugin { class
/dokuwiki/inc/Action/
H A DAbstractAclAction.php6 use dokuwiki\Extension\AuthPlugin; alias
24 if (!$auth instanceof AuthPlugin) throw new ActionAclRequiredException();
H A DProfileDelete.php7 use dokuwiki\Extension\AuthPlugin; alias
29 /** @var AuthPlugin $auth */
H A DProfile.php8 use dokuwiki\Extension\AuthPlugin; alias
31 /** @var AuthPlugin $auth */
H A DRegister.php8 use dokuwiki\Extension\AuthPlugin; alias
31 /** @var AuthPlugin $auth */
H A DLogout.php7 use dokuwiki\Extension\AuthPlugin; alias
29 /** @var AuthPlugin $auth */
H A DResendpwd.php8 use dokuwiki\Extension\AuthPlugin; alias
31 /** @var AuthPlugin $auth */
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php4 use dokuwiki\Extension\AuthPlugin; alias
59 /** @var AuthPlugin $auth */
62 if (!$auth instanceof AuthPlugin) {
98 /** @var AuthPlugin $auth */
118 /** @var AuthPlugin $auth */
147 /** @var AuthPlugin $auth */
193 /** @var AuthPlugin $auth */
223 /** @var AuthPlugin $auth */
261 /** @var AuthPlugin $auth */
H A Dremote.php3 use dokuwiki\Extension\AuthPlugin; alias
42 /** @var AuthPlugin $auth */
106 /** @var AuthPlugin $auth */
/dokuwiki/inc/
H A Dconfutils.php16 use dokuwiki\Extension\AuthPlugin; alias
365 /** @var AuthPlugin $auth */
372 (isset($conf['openregister']) && !$conf['openregister']) || !$auth instanceof AuthPlugin
378 (isset($conf['resendpasswd']) && !$conf['resendpasswd']) || !$auth instanceof AuthPlugin
383 … if ((isset($conf['subscribers']) && !$conf['subscribers']) || !$auth instanceof AuthPlugin) {
386 if (!$auth instanceof AuthPlugin || !$auth->canDo('Profile')) {
389 if (!$auth instanceof AuthPlugin || !$auth->canDo('delUser')) {
392 if (!$auth instanceof AuthPlugin) {
395 if (!$auth instanceof AuthPlugin || !$auth->canDo('logout')) {
H A Dauth.php16 use dokuwiki\Extension\AuthPlugin; alias
65 if (!$auth instanceof AuthPlugin) {
304 if (!$auth instanceof AuthPlugin) return false;
544 if ($auth instanceof AuthPlugin) {
576 if (!$auth instanceof AuthPlugin) return false;
647 if (!$auth instanceof AuthPlugin) return false;
746 if (!$auth instanceof AuthPlugin) return AUTH_NONE;
961 if (!$auth instanceof AuthPlugin) return false;
1395 if (!$auth instanceof AuthPlugin) return false;
/dokuwiki/inc/Feed/
H A DFeedItemProcessor.php5 use dokuwiki\Extension\AuthPlugin; alias
121 if ($conf['useacl'] && $auth instanceof AuthPlugin) {
/dokuwiki/_test/tests/inc/
H A Dpageutils_findnearest.test.php3 use dokuwiki\test\mock\AuthPlugin; alias
18 $auth = new AuthPlugin();
H A Dauth_admincheck.test.php4 use dokuwiki\test\mock\AuthPlugin; alias
21 $auth = new AuthPlugin();
/dokuwiki/inc/Ui/
H A DUserProfile.php5 use dokuwiki\Extension\AuthPlugin; alias
25 /** @var AuthPlugin $auth */
77 /** @var AuthPlugin $auth */
/dokuwiki/
H A Dfeed.php18 use dokuwiki\Extension\AuthPlugin; alias
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php6 use dokuwiki\Extension\AuthPlugin; alias
31 /** @var AuthPlugin $auth */
H A DSubscriberManager.php5 use dokuwiki\Extension\AuthPlugin; alias
241 /** @var AuthPlugin $auth */
/dokuwiki/inc/Remote/
H A DApiCore.php8 use dokuwiki\Extension\AuthPlugin; alias
138 /** @var AuthPlugin $auth */
142 if (!$auth instanceof AuthPlugin) return 0;
177 if (!$auth instanceof AuthPlugin) return 0;
211 /** @var AuthPlugin $auth */
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php3 use dokuwiki\Extension\AuthPlugin; alias
221 if ($auth instanceof AuthPlugin && $auth->canDo('getUserCount')) {
/dokuwiki/inc/Extension/
H A DAuthPlugin.php14 abstract class AuthPlugin extends Plugin class

12