Home
last modified time | relevance | path

Searched refs:getUserCount (Results 1 – 6 of 6) sorted by path

/dokuwiki/inc/Extension/
H A DAuthPlugin.php32 'getUserCount' => false, // can the number of users be retrieved?
318 * Set getUserCount capability when implemented
324 public function getUserCount($filter = [])
326 public function getUserCount($filter = array()) global() function in dokuwiki\\Extension\\AuthPlugin
/dokuwiki/lib/plugins/authad/
H A Dauth.php129 $this->cando['getUserCount'] = true;
398 public function getUserCount($filter = [])
402 Logger::debug("authad/auth.php getUserCount(): _adldap not set.");
388 public function getUserCount($filter = array()) global() function in auth_plugin_authad
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php103 $this->cando['getUserCount'] = $this->checkConfig(
406 public function getUserCount($filter = [])
446 public function getUserCount($filter = array()) global() function in auth_plugin_authpdo
/dokuwiki/lib/plugins/authplain/
H A Dauth.php52 $this->cando['getUserCount'] = true;
278 public function getUserCount($filter = [])
271 public function getUserCount($filter = array()) global() function in auth_plugin_authplain
/dokuwiki/lib/plugins/popularity/
H A Dhelper.php221 if ($auth instanceof AuthPlugin && $auth->canDo('getUserCount')) {
222 $data['user_count'] = $auth->getUserCount();
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php168 $this->users_total = $this->auth->canDo('getUserCount') ? $this->auth->getUserCount($this->filter) : -1;
224 $this->auth->getUserCount()
230 $allUserTotal = $this->auth->getUserCount();