Home
last modified time | relevance | path

Searched refs:user (Results 176 – 200 of 1528) sorted by path

12345678910>>...62

/plugin/authradius/
H A Dauth.php72 public function checkPass($user, $pass) { argument
77 radius_put_attr($this->radius,RADIUS_USER_NAME,$user);
117 $data = $this->getUserData($user);
120 $this->classes[$user] = null;
129 $this->classes[$user] = strtolower($data);
159 * @param string $user
162 public function getUserData($user) { argument
163 $data['mail'] = $user.'@'.$this->getConf('mailhost');
164 $data['name'] = $user;
166 if($this->classes[$user] != null) {
[all …]
/plugin/authremoteuser/
H A DREADME.md21 It uses the default plain text file `conf/users.auth.php` to store user
60 3. Add this value as new user ID to your user list if it is missing and
61 add them groups `admin` and `user`.[^1]
120 Encrypted password if user id was added using *authplain*, otherwise empty.
122 Real name of the user.
124 Email address of user.
126 Comma separated list of groups a user is member of. The group names must
137 [^1]: Don't be surprised: The user ID is converted to a valid page name.
H A Dauth.php65 * @param string $user
107 * @param string $user
113 return isset($this->users[$user]) ? $this->users[$user] : false;
121 * @param string $user
150 * @param string $user
202 $newuser = $user;
240 foreach($users as $user) {
241 if(isset($this->users[$user])) $deleted[] = preg_quote($user, '/');
321 * @param string $user
324 public function cleanUser($user) { argument
[all …]
/plugin/authsaml/
H A Daction.php72 $user = $this->saml->getUserData($username);
74 if(!$user) {
80 $user = $this->saml->getUserData($username);
H A Dauth.php56 public function getUserData($user, $requireGroups = true) argument
58 return $this->saml->getUserData($user);
62 public function checkPass($user, $pass) { argument
63 return $this->saml->checkPass($user);
71 public function trustExternal($user, $pass, $sticky = false) argument
H A Dsaml.php78 public function getUserData($user) { argument
81 return $auth->getUserData($user);
84 return $this->getFILEUserData($user);
88 public function checkPass($user) { argument
91 if ($user == $this->getUsername()) {
158 public function getFILEUserData($user) argument
161 return isset($this->users[$user]) ? $this->users[$user] : false;
202 $user = $username;
335 foreach($users as $user) {
336 if(isset($this->users[$user])) $deleted[] = preg_quote($user, '/');
[all …]
/plugin/authshibboleth/
H A DREADME.md11 …quired information from the environment variables injected by Shibboleth (user's attributes sent b…
/plugin/authshibboleth/plugin/authshibboleth/
H A Dauth.php181 * @param string $user User login
185 protected function _filter($user, $info) { argument
188 if(!preg_match($pattern, $user)) return false;
230 * @param string $user
234 public function getUserData($user, $requireGroups=true) { argument
236 return isset($this->users[$user]) ? $this->users[$user] : false;
252 foreach($this->users as $user => $info) {
253 $count += $this->_filter($user, $info);
275 foreach($this->users as $user => $info) {
276 if($this->_filter($user, $info)) {
[all …]
/plugin/authsmartcard/
H A DREADME.md8 … to dokuwiki by comparing the user's client certificate's CN attribute with the group field for a
10user John Doe needs access to the Wiki. John has a client certificate (or smartcard with a certif…
12 …lugin will authenticate user 'jdoe' by comparing the CN of his certificate with the groups he is a…
H A Dauth.php44 * @param string $user the user name
167 * @param string $user the user name
170 public function getUserData($user) { argument
171 return parent::getUserData($user);
185 * @param string $user
192 public function createUser($user, $pass, $name, $mail, $grps = null) { argument
193 return parent::createUser($user, $pass, $name, $mail, $grps);
201 * @param string $user nick of the user to be changed
205 public function modifyUser($user, $changes) { argument
206 return parent::modifyUser($user, $changes);
H A Dplugin.info.txt6 desc Provides user authentication using client certificates (smartcards)
/plugin/authsmf20/
H A Dauth.php97 * @param string $user Username
112 if ($user) {
119 if ($user) {
315 * @param string $user User name
328 if (empty($user)) {
350 $user = $this->_smf_db_link->real_escape_string($user);
371 $user_data['smf_user_username'] = $user;
443 * @param string $user User name
469 * @param string $user username
472 public function cleanUser($user) argument
[all …]
H A Dplugin.info.txt6 desc Provides user authentication using SMF 2.0 backend
H A Dstyle.css18 div.dokuwiki .user > a.userlink {
29 background: url('images/user-male.png') no-repeat 0% 50%;
33 background: url('images/user-female.png') no-repeat 0% 50%;
37 background: url('images/user-unknown.png') no-repeat 0% 50%;
/plugin/authsplit/
H A DREADME19 - a SECONDARY auth plugin that supplies ADDITIONAL user information such as
35 As authsplit has to orchestrate two auth plugins and the user's state in
36 them, it is possible that a user is known to one of the two plugins only or
55 validates both login name and password successfully. If a user is not known
71 tries to obtain the additional user information (real name, email address,
72 groups) from the SECONDARY auth plugin, which means that the user will have to
76 users), authsplit will create a user account there, too, using user
78 most likely not be very useful, the user will not only be notified that an
80 also review his or her user profil
[all...]
H A Dauth.php88 auth plugin as otherwise admins can not add user accounts there in
95 /* To add and delete user accounts, modify real names, email addresses,
122 'getUsers' => 'get user list',
123 'getUserCount' => 'get user counts',
136 * Authenticate user (DokuWiki-style user/password authentication)
139 * used (primary auth plugin's canDo['external'] == false) and the user
142 * @param string $user the user name
146 public function checkPass($user, argument
176 trustExternal($user, $pass, $sticky = false) global() argument
214 _checkUserOnSecondaryAuthPlugin($user) global() argument
328 getUserData($user, $requireGroups = true) global() argument
363 _dumpUserData($user) global() argument
392 createUser($user, $pass, $name, $mail, $grps = null) global() argument
443 modifyUser($user, $changes) global() argument
659 cleanUser($user) global() argument
[all...]
/plugin/authsqlite/
H A DREADME.md15 database contains all of the user information, but group membership is
20 JOIN user AS u ON u.uid=ug.uid
22 WHERE u.login=\'%{user}\'
26 FROM user WHERE login=\'%{user}\'';
28 'SELECT g.name AS \'group\' FROM groups g, user u,
31 AND g.gid = ug.gid AND u.login=\'%{user}\'';
33 'SELECT DISTINCT u.login AS user FROM user AS u
42 'INSERT INTO user (login, pass, email, fullname)
43 VALUES (\'%{user}\', \'%{pass}\', \'%{email}\', \'%{name}\')';
50 'SELECT uid AS id FROM user WHERE login=\'%{user}\'';
[all …]
H A Dauth.php159 foreach($result as $user) {
160 if(($info = $this->_getUserInfo($user['user']))) {
161 $out[$user['user']] = $info;
185 * @param string $user user to add to a group
193 if(($this->dbcon) && ($user)) {
208 $uid = $this->_getUserID($user);
215 $this->_flushUserInfoCache($user);
239 * @param string $user login of the user
257 $uid = $this->_getUserID($user);
272 $this->_flushUserInfoCache($user);
[all …]
H A Dplugin.info.txt6 desc Provides user authentication against a SQLite database
/plugin/authucenter/
H A Dauth.php77 * @param string $user Username
94 if(!empty($user)){
138 $USERINFO['name'] = $user;
155 * @param string $user the user name
173 * @param string $user the user name
176 public function getUserData($user) { argument
201 * @param string $user
264 foreach($users as $user){
351 * @param string $user username
354 public function cleanUser($user) { argument
[all …]
/plugin/authucenter/lib/uc_client/control/
H A Dpm.php76 $user = $_ENV['user']->get_user_by_uid($fromuid);
77 $user = daddslashes($user, 1);
78 if(!$user) {
81 $this->user['uid'] = $user['uid'];
82 $this->user['username'] = $user['username'];
88 unset($msgto[$this->user['uid']]);
128 $lastpmid = $_ENV['pm']->replypm($plid, $this->user['uid'], $this->user['username'], $message);
130 …$lastpmid = $_ENV['pm']->sendpm($this->user['uid'], $this->user['username'], $msgto, $subject, $me…
137 $this->user['uid'] = intval($this->input('uid'));
157 $this->user['uid'] = intval($this->input('uid'));
[all …]
H A Duser.php36 if($this->user = $_ENV['user']->get_user_by_uid($uid)) {
40 …thcode('action=synlogin&username='.$this->user['username'].'&uid='.$this->user['uid'].'&password='…
123 $user = $_ENV['user']->get_user_by_uid($username);
125 $user = $_ENV['user']->get_user_by_email($username);
127 $user = $_ENV['user']->get_user_by_username($username);
131 if(empty($user)) {
133 } elseif($user['password'] != md5($passwordmd5.$user['salt'])) {
138 $status = $user['uid'];
144 return array($status, $user['username'], $password, $user['email'], $merge);
205 $user = $_ENV['user']->get_user_by_username($username);
[all …]
/plugin/authucenter/lib/uc_client/model/
H A Dbase.php34 var $user = array(); variable in base
H A Dpm.php489 $user = explode('_', $list['min_max']);
490 if(!in_array($uid, $user)) {
H A Duser.php119 function check_login($username, $password, &$user) { argument
120 $user = $this->get_user_by_username($username);
121 if(empty($user['username'])) {
123 } elseif($user['password'] != md5(md5($password).$user['salt'])) {
126 return $user['uid'];
212 while($user = $this->db->fetch_array($query)) {
213 $arr[] = $user['uid'];
221 while($user = $this->db->fetch_array($query)) {
222 $arr[$user['uid']] = $user['username'];

12345678910>>...62