Home
last modified time | relevance | path

Searched refs:auth (Results 1 – 25 of 299) sorted by last modified time

12345678910>>...12

/plugin/twofactor/
H A Dadmin.php233 global $auth;
238 $userdata = $auth->getUserData($user);
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
/plugin/dbquery/_test/
H A DHelperTest.php46 global $auth;
49 $auth->createUser('foo', 'bar', 'My Test User', 'foo@example.com', ['one', 'two', 'three']);
/plugin/siteexport/inc/
H A Dhttpproxy.php87 global $auth, $INPUT;
/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/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/acknowledge/
H A Dhelper.php139 /** @var AuthPlugin $auth */
140 global $auth;
142 if (!$auth->canDo('getUsers')) {
152 $users = $auth->retrieveUsers();
303 /** @var AuthPlugin $auth */
304 global $auth;
318 array_keys($auth->retrieveUsers(0, 0, ['grps' => substr($item, 1)]))
/plugin/acknowledge/admin/
H A Dreport.php91 /** @var AuthPlugin $auth */
92 global $auth;
96 $user = $auth->cleanUser($user);
97 $userinfo = $auth->getUserData($user, true);
/plugin/dokusioc/
H A Daction.php558 global $auth;
559 if ($info = $auth->getUserData($user)) {
577 global $auth, $conf;
586 if ($info = $auth->getUserData($userid)) {
/plugin/photogallery/phpThumb/docs/
H A Dphpthumb.changelog.txt21 * [bugfix: G183] better message auth
/plugin/photogallery/
H A Dsyntax.php274 global $auth;
971 global $auth;
974 if (!$auth) return false;
994 global $auth;
997 if(!$auth) return false;
/plugin/sqlite/
H A DFunctions.php90 global $auth;
91 if (!$auth) return AUTH_DELETE;
/plugin/starred/
H A Dhelper.php113 global $auth;
117 if ($auth && !$auth->isCaseSensitive()) {
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe39097 auth ored
41363 auth ors
/plugin/aichat/
H A DEmbeddings.php246 global $auth;
268 if ($auth && auth_quickaclcheck($chunk->getPage()) < AUTH_READ) continue;
H A Dhelper.php78 global $auth;
82 if (!$auth) return true;
/plugin/bez/cron/
H A Dfunctions.php52 global $auth;
101 $udata = $auth->getUserData($user);
/plugin/bez/mdl/
H A DUserFactory.php36 global $auth;
37 $wikiusers = $auth->retrieveUsers();
/plugin/bez/syntax/
H A Dstruct.php85 global $auth;
92 $model = new Model($auth, $INFO['client'], $this, $conf);
/plugin/bez/action/
H A Dbase.php59 global $auth;
68 $this->model = new bez\mdl\Model($auth, $client, $this, $skip_acl);
H A Ddefault.php192 global $auth;
/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);

12345678910>>...12