Home
last modified time | relevance | path

Searched refs:auth (Results 126 – 150 of 299) sorted by relevance

12345678910>>...12

/plugin/virtualgroup/
H A Dadmin.php28 global $auth;
52 $INPUT->set('user', $auth->cleanUser($INPUT->str('loaduser')));
55 $this->virtualGroups->getUserGroups($auth->cleanUser($INPUT->str('loaduser')))
61 $INPUT->set('group', $auth->cleanGroup($INPUT->str('loadgroup')));
64 $this->virtualGroups->getGroupUsers($auth->cleanGroup($INPUT->str('loadgroup')))
78 global $auth;
81 $user = $auth->cleanUser($user);
83 static fn($group) => $auth->cleanGroup($group),
101 global $auth;
104 $group = $auth
[all...]
/plugin/groupadmin/
H A Dadmin.php27 global $auth;
31 if (!isset($auth)) {
33 } else if (!$auth->canDo('getUsers')) {
38 $this->_auth = & $auth;
/plugin/authg2fa/
H A Dadmin.php35 global $auth;
39 if (!isset($auth)) {
42 } else if (!$auth->canDo('getUsers')) {
48 $this->_auth = & $auth;
/plugin/structtasks/_test/
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');
/plugin/preservefilenames/
H A Daction_adorabelle.php33 function _mod_media_printfile($item,$auth,$jump,$display_namespace=false){ argument
99 if($item['writable'] && $auth >= AUTH_DELETE){
120 function _mod_media_printfile_thumbs($item,$auth,$jump=false,$display_namespace=false){ argument
/plugin/autologoff/
H A Dhelper.php74 global $auth;
81 $info = $auth->getUserData($_SERVER['REMOTE_USER']);
/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/authorlist/
H A Dhelper.php204 global $auth; // if we need to get the eMail-adress.
207 …case 'email': $userdata = $auth->getUserData($loginname); $display= $this->email($userdata['mail']…
296 global $auth;
297 $userdata = $auth->getUserData($loginname);
/plugin/usermanagerextended/action/
H A Dextend.php69 global $auth, $conf;
73 $existingUser = $auth->getUserData($modUser);
/plugin/authsmf20/
H A Daction.php40 global $auth, $conf;
52 $data = $auth->getUserData($event->data['username']);
/plugin/authvk/
H A Daction.php29 global $auth;
119 if(($auth->getUserData($vk_login) == false) and (!empty($vk_fullname)) ){
120 $auth->triggerUserMod('create', array($vk_login, $vk_pass, $vk_fullname, $vk_email));
/plugin/submgr/
H A Dadmin.php132 global $auth;
140 if (!$auth->canDo('getUsers')) {
/plugin/bez/mdl/
H A DUserFactory.php36 global $auth;
37 $wikiusers = $auth->retrieveUsers();
/plugin/sqlite/
H A DFunctions.php90 global $auth;
91 if (!$auth) return AUTH_DELETE;
/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/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/avatar/
H A Dhelper.php45 global $auth;
58 $userinfo = $auth->getUserData($user);
/plugin/isauth/
H A Dsyntax.php79 $auth = trim(substr($match, 8, -1));
82 $aauth = explode(",",$auth);
/plugin/ireadit/
H A Dhelper.php22 global $auth;
28 $set = $auth->retrieveUsers();
30 $all_users = $auth->retrieveUsers();
/plugin/groupmail/
H A Dsyntax.php124 $info = $auth->getUserData($userId);
316 global $auth;
323 if (!method_exists($auth, "retrieveUsers")) continue;
325 $userInfoHash = $auth->retrieveUsers(0,-1,array('grps'=>'^'.preg_quote($grp,'/').'$'));
330 $info = $auth->getUserData($userId);
363 global $auth;
/plugin/authlinotp/
H A DREADME.md24 You can revert to the originial auth plugin by editing the file conf/local.php:
32 The auth plugin write some messages to the debug log.
/plugin/bez/syntax/
H A Dstruct.php85 global $auth;
92 $model = new Model($auth, $INFO['client'], $this, $conf);
/plugin/groupmanager/
H A Dsyntax.php74 global $auth;
78 if (!isset($auth)) {
80 } else if (!$auth->canDo('getUsers')) {
85 $this->_auth = & $auth;
394 if (!method_exists($auth, "retrieveUsers")) return false;
843 global $auth;
845 $user[0] = ($clean) ? $auth->cleanUser($_REQUEST['userid']) : $_REQUEST['userid'];
852 if ($clean) $user[4] = array_map(array($auth, 'cleanGroup'), $user[4]);
/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
/plugin/sfauth/
H A DREADME3 Allow SalesForce auth besides auth plain.

12345678910>>...12