Home
last modified time | relevance | path

Searched refs:auth (Results 26 – 50 of 299) sorted by last modified time

12345678910>>...12

/plugin/structtasks/meta/
H A DUtilities.php122 global $auth;
123 $userData = $auth->getUserData($user, false);
/plugin/recommend/
H A Daction.php88 global $auth;
91 if (!$auth->canDo('getUsers')) {
105 $logins = $auth->retrieveUsers(0, 10, ['user' => $lookup]);
107 $logins = array_merge($logins, $auth->retrieveUsers(0, 10, ['name' => $lookup]));
/plugin/recommend/helper/
H A Dmail.php76 global $auth;
77 if (!$auth->canDo('getUsers')) {
81 $users = $auth->retrieveUsers(0, 0, ['grps' => substr($recipient, 1)]);
95 global $auth;
96 $user = $auth->getUserData($recipient);
113 global $auth;
114 if (!$auth->canDo('getUsers')) {
118 $user = $auth->retrieveUsers(0, 1, ['mail' => $mail]);
/plugin/todo/syntax/
H A Dtodo.php348 global $auth;
349 $username = $auth->getUserData($username)['name'];
/plugin/bureaucracy/helper/
H A Dfielduser.php45 global $auth;
54 $udata = $auth->getUserData($value);
93 global $auth;
95 if (!is_null($value) && $auth->getUserData($value) === false) {
H A Daction.php108 $auth = auth_aclcheck($id, $runas, array());
110 $auth = auth_quickaclcheck($id);
112 return $auth;
H A Dactiontemplate.php122 $auth = $this->aclcheck($templatepage); // runas
123 if ($auth >= AUTH_READ ) {
249 $auth = $this->aclcheck($pname);
250 if ($auth < AUTH_CREATE) {
407 $auth = $this->aclcheck($id); // runas
417 $auth,
H A Dfieldusers.php44 global $auth;
62 return implode($delimiter, array_map(function ($user) use ($auth, $attribute) {
63 return $auth->getUserData($user)[$attribute];
88 global $auth;
91 if ($auth->getUserData($user) === false) {
/plugin/bureaucracy/
H A Daction.php41 global $auth;
43 foreach($auth->retrieveUsers() as $username => $data) {
/plugin/oauth/
H A DOAuthManager.php185 global $auth;
204 $userdata['user'] = $auth->cleanUser((string)$userdata['user']);
216 $userdata['grps'] = array_map([$auth, 'cleanGroup'], (array)$userdata['grps']);
224 * Uses the global $auth object for user management
233 /** @var \auth_plugin_oauth $auth */
234 global $auth;
237 $localUser = $auth->getUserByEmail($userdata['mail']);
239 $localUserInfo = $auth->getUserData($localUser);
244 if (!in_array($auth->cleanGroup($servicename), $localUserInfo['grps'])) {
256 $auth
[all...]
/plugin/oauth/action/
H A Duser.php65 global $auth;
81 $services = array_map([$auth, 'cleanGroup'], $services);
108 /** @var auth_plugin_authplain $auth */
109 global $auth;
124 $group = $auth->cleanGroup($service->getServiceID());
151 /** @var auth_plugin_authplain $auth */
152 global $auth;
164 $group = $auth->cleanGroup($service->getServiceID());
/plugin/oauth/vendor/lusitanian/oauth/
H A DREADME.md111 For usage with complete auth flow, please see the examples. More in-depth documentation will come with release 1.0.
/plugin/approve/
H A Dadmin.php74 /* @var DokuWiki_Auth_Plugin $auth */
75 global $auth;
122 $user = $auth->getUserData($approver);
136 if ($auth->canDo('getUsers')) {
139 if ($auth->canDo('getGroups')) {
140 foreach($auth->retrieveGroups() as $group) {
144 foreach($auth->retrieveUsers() as $login => $data) {
148 // in case your auth plugin can do groups, but not list them (like the default one),
150 if (!$auth->canDo('getGroups')) {
/plugin/approve/syntax/
H A Dtable.php128 /** @var DokuWiki_Auth_Plugin $auth */
129 global $auth;
220 $user = $auth->getUserData($by);
228 $user = $auth->getUserData($approver);
/plugin/notification/helper/
H A Dcron.php23 global $auth;
32 $allUsers = array_keys($auth->retrieveUsers());
/plugin/notification/action/
H A Dcron.php41 global $auth;
130 $userinfo = $auth->getUserData($user, $requireGroups = false);
H A Dmigration.php47 global $auth;
52 foreach (array_keys($auth->retrieveUsers()) as $user) {
/plugin/ireadit/action/
H A Dmigration.php87 global $auth;
106 $users = $auth->retrieveUsers();
/plugin/ireadit/
H A Dhelper.php22 global $auth;
28 $set = $auth->retrieveUsers();
30 $all_users = $auth->retrieveUsers();
/plugin/openid/
H A Daction.php154 if ($auth && $auth->canDo('addUser') && actionOK('register')) {
172 if (!$auth) {
182 $auth->addExtension($e);
191 $url = $auth->redirectURL(DOKU_URL, $return_to);
266 global $auth, $ID;
285 if ($auth && $auth->canDo('addUser') && actionOK('register')) {
395 global $USERINFO, $auth, $conf;
398 $users = $auth->retrieveUsers();
444 if(!$auth->canDo('addUser')) return false;
496 global $USERINFO, $INFO, $conf, $auth;
[all …]
/plugin/blogtng/action/
H A Dajax.php32 global $auth, $INPUT;
48 if($auth AND $info = $auth->getUserData($INPUT->server->str('REMOTE_USER'))) {
H A Dedit.php383 global $auth, $ID, $INPUT;
392 if($auth != null) {
393 $userdata = $auth->getUserData($login);
H A Dpagedata.php37 global $auth;
54 if ($auth != null){
55 $userdata = $auth->getUserData($login);
/plugin/do/
H A Dhelper.php188 global $auth;
189 if ($auth && !$auth->isCaseSensitive()) {
330 global $auth;
332 if (!$auth) {
371 $info = $auth->getUserData($receiver);
/plugin/do/syntax/
H A Ddo.php69 global $auth;
89 if ($auth) {
90 … $data['task']['users'] = array_map(array($auth, 'cleanUser'), $data['task']['users']);
288 global $auth;
317 if (!$auth) {

12345678910>>...12