Lines Matching refs:authplugins

13     protected $authplugins;
51 $this->authplugins[$type] = plugin_load('auth', $pluginName);
52 if (!$this->authplugins[$type]) {
58 $this->authplugins[$type] = null;
90 $this->cando['modLogin'] = $this->authplugins['secondary']->canDo('modLogin');
93 $this->cando['modPass'] = $this->authplugins['primary']->canDo('modPass');
100 $this->cando[$cap] = $this->authplugins['secondary']->canDo($cap);
105 $this->cando['external'] = $this->authplugins['primary']->cando['external'];
108 $this->cando['logout'] = $this->authplugins['primary']->canDo('logout');
111 $this->authplugins['primary']->getPluginName().'/'.
112 $this->authplugins['secondary']->getPluginName().' '.
148 if (!$this->authplugins['primary']->checkPass($user, $pass)) {
181 if (!$this->authplugins['primary']->trustExternal($user, $pass, $sticky)) {
216 $userinfo = $this->authplugins['secondary']->getUserData($user, false);
238 if (!$this->authplugins['secondary']->cando['addUser']) {
242 $this->authplugins['secondary']->getPluginName()
252 $params = $this->authplugins['primary']->getUserData($user, true);
257 $this->authplugins['primary']->getPluginName()
302 return $this->authplugins['primary']->logOff();
311 return $this->authplugins['primary']->logIn();
330 $userinfo = $this->authplugins['primary']->getUserData($user, false);
340 $userinfo = $this->authplugins['secondary']->getUserData($user, $requireGroups);
395 $userinfo = $this->authplugins['primary']->getUserData($user, false);
396 if (!$userinfo && $this->authplugins['primary']->cando['addUser']) {
397 $result = $this->authplugins['primary']->createUser(
414 $result = $this->authplugins['secondary']->createUser(
450 $result = $this->authplugins['primary']->modifyUser(
466 $result = $this->authplugins['secondary']->modifyUser(
483 if ($this->authplugins['primary']->canDo['mod' . ucfirst($field)]) {
484 $result = $this->authplugins['primary']->modifyUser(
499 $result = $this->authplugins['secondary']->modifyUser(
531 $result = $this->authplugins['secondary']->deleteUsers($users);
555 $result = $this->authplugins['secondary']->retrieveUsers(
577 $result = $this->authplugins['secondary']->getUserCount($filter);
597 $result = $this->authplugins['secondary']->addGroup($group);
618 $result = $this->authplugins['secondary']->retrieveGroups($start, $limit);
638 $result = $this->authplugins['primary']->isCaseSensitive();
661 $result = $this->authplugins['primary']->cleanUser($user);
703 $result = $this->authplugins['secondary']->cleanGroup($group);