Home
last modified time | relevance | path

Searched refs:auth (Results 251 – 275 of 299) sorted by path

1...<<1112

/plugin/stats/
H A Dsyntax.php736 global $auth;
758 if($auth->canDo('getUserCount')) {
759 $nbUsers = $auth->getUserCount(array());
/plugin/struct/types/
H A DUser.php32 /** @var AuthPlugin $auth */
33 global $auth;
34 $info = $auth->getUserData($rawvalue, false);
67 /** @var AuthPlugin $auth */
68 global $auth;
71 if (!$auth->canDo('getUsers')) {
94 $logins = $pad_keys($auth->retrieveUsers(0, $max, ['user' => $lookup]));
98 $pad_keys($auth->retrieveUsers(0, $max, ['name' => $lookup]))
/plugin/structgroup/helper/
H A Dauthgroup.php39 global $auth;
41 if(!$auth->canDo('getUsers')) {
46 … $groups = array_map(function($userinfo) { return $userinfo['grps']; }, $auth->retrieveUsers());
/plugin/structnotification/action/
H A Dnotification.php145 /** @var DokuWiki_Auth_Plugin $auth */
146 global $auth;
194 $all_users = $auth->retrieveUsers();
/plugin/structpublish/helper/
H A Dnotify.php118 /** @var AuthPlugin $auth */
119 global $auth;
120 if (!$auth->canDo('getUsers')) {
125 $users = $auth->retrieveUsers(0, 5000, ['grps' => substr($recipient, 1)]);
138 /** @var AuthPlugin $auth */
139 global $auth;
140 $user = $auth->getUserData($recipient);
/plugin/structtasks/_test/
H A DActionTest.php47 global $auth;
48 $auth->createUser('user1', 'abcdefg', 'Arron Dom Person', 'adperson@example.com');
49 $auth->createUser('user2', '123456789', 'Fay Mail', 'user2@example.com');
H A DCliTest.php79 global $auth;
80 $auth->createUser('user1', 'abcdefg', 'Some One', 'so@example.com');
123 global $auth;
124 $auth->createUser('user1', 'abcdefg', 'Some One', 'so@example.com');
H A DUtilitiesTest.php65 global $auth;
67 $auth->createUser('user1', 'abcdefg', 'Arron Dom Person', 'adperson@example.com');
68 $auth->createUser('user2', '123456789', 'Fay Mail', 'user2@example.com');
170 global $auth;
172 $auth->createUser('user1', 'abcdefg', 'Arron Dom Person', 'adperson@example.com');
173 $auth->createUser('user2', '123456789', 'Fay Mail', 'user2@example.com');
174 $auth->createUser('user3', 'asdkfjdl', '', 'some@mail.com');
/plugin/structtasks/
H A Daction.php74 global $auth;
78 $userData = $auth->getUserData($editor_id, false);
/plugin/structtasks/meta/
H A DUtilities.php122 global $auth;
123 $userData = $auth->getUserData($user, false);
/plugin/structtemplate/_vagrant/
H A Dprovision_dokuwiki.sh150 config_file="${dw_path}/conf/acl.auth.php"
/plugin/submgr/
H A Dadmin.php132 global $auth;
140 if (!$auth->canDo('getUsers')) {
H A Dhelper.php188 global $auth;
200 $found = $auth->retrieveUsers(0, 5000, array('grps' => substr($one, 1)));
/plugin/submgr/lang/en/
H A Dnousers.txt4 functionality is needed for this plugin. Maybe your auth plugin needs additional configuration, may…
/plugin/supa/helper/
H A Dhelper.php33 function html_supa_applet( $ns, $auth ) { argument
/plugin/superacl/
H A Dadmin.php341 global $auth;
363 $info = $auth->getUserData($user);
/plugin/swiftmail/Swift/Connection/
H A DSMTP.php200 public function attachAuthenticator(Swift_Authenticator $auth) argument
202 $this->authenticators[$auth->getAuthExtensionName()] = $auth;
206 $log->add("Authentication mechanism '" . $auth->getAuthExtensionName() . "' attached.");
/plugin/sympaauth/
H A DREADME5 2- copy sympa.class.php in inc/auth/ directory
H A Dadmin.php95 if (!file_exists(DOKU . '/inc/auth/sympa.class.php')) {
/plugin/task/
H A Dhelper.php454 global $ID, $lang, $INFO, $auth;
483 if ($auth) {
484 foreach ($auth->retrieveUsers(0, 0, $filter) as $curr_user) {
538 global $ID, $lang, $INFO, $auth;
561 if ($auth) {
562 foreach ($auth->retrieveUsers(0, 0, $filter) as $curr_user) {
/plugin/tiledblog/
H A Dajax.php16 $INFO['userinfo'] = $auth->getUserData ($auth->cleanUser ($_SERVER['REMOTE_USER']));
/plugin/todo/syntax/
H A Dtodo.php348 global $auth;
349 $username = $auth->getUserData($username)['name'];
/plugin/translate/
H A Daction.php241 $auth = auth_quickaclcheck($id);
242 $auth_ok = ($auth >= AUTH_CREATE);
243 if (!$auth_ok && $auth >= AUTH_READ) {
353 $auth = auth_quickaclcheck($target_id);
354 $auth_ok = ($auth >= AUTH_CREATE);
355 if (!$auth_ok && $auth >= AUTH_READ) {
/plugin/translator/
H A Dadmin.php20 global $auth;
22 if (!isset($auth)) {
24 } else if (!$auth->canDo('getUsers')) {
29 $this->_auth = & $auth;
/plugin/twofactor/
H A DProvider.php62 /** @var AuthPlugin $auth */
63 global $auth;
65 $userdata = $auth->getUserData($user);
66 if (!$userdata) throw new \RuntimeException('2fa: Failed to get user details from auth backend');
163 * Generate an auth code

1...<<1112