Lines Matching +full:auth -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)
20 * by the auth backend a return value of `false` is returned. You need to check this return
34 * @todo handle error messages from auth backend
42 /** @var AuthPlugin $auth */
43 global $auth;
45 if (!$auth->canDo('addUser')) {
47 sprintf('Authentication backend %s can\'t do addUser', $auth->getPluginName()),
52 $user = trim($auth->cleanUser($user));
72 $ok = (bool)$auth->triggerUserMod('create', [$user, $password, $name, $mail, $groups]);
90 * @todo handle error messages from auth backend
98 global $auth;
99 if (!$auth->canDo('delUser')) {
101 sprintf('Authentication backend %s can\'t do delUser', $auth->getPluginName()),
106 /** @var AuthPlugin $auth */
107 global $auth;
108 return (bool)$auth->triggerUserMod('delete', [[$user]]);