Home
last modified time | relevance | path

Searched refs:user (Results 51 – 67 of 67) sorted by last modified time

123

/dokuwiki/lib/plugins/authldap/
H A Dplugin.info.txt6 desc Provides user authentication against an LDAP server
H A Dauth.php21 protected $bound = 0; // 0: anonymous, 1: user, 2: superuser
48 * Check user+password
50 * Checks if the given user exists and the given
54 * @param string $user
59 public function checkPass($user, $pass)
65 // indirect user bind
81 ['user' => $user, 'server' => $this->getConf('server')]
83 } elseif (strpos($this->getConf('usertree'), '%{user}')) {
84 // direct user bin
56 checkPass($user, $pass) global() argument
152 getUserData($user, $requireGroups = true) global() argument
162 fetchUserData($user, $inbind = false) global() argument
321 modifyUser($user, $changes) global() argument
482 filter($user, $info) global() argument
[all...]
/dokuwiki/lib/plugins/authad/
H A Dplugin.info.txt6 desc Provides user authentication against a Microsoft Active Directory
H A Dauth.php32 * // warn user about expiring password this many days in advance:
63 * @var array user listing cache
114 // trust the incoming user
148 * Check user+password [required auth function]
150 * Checks if the given user exists and the given
155 * @param string $user
159 public function checkPass($user, $pass)
163 $INPUT->server->str('REMOTE_USER') == $user &&
167 $adldap = $this->initAdLdap($this->getUserDomain($user));
171 return $adldap->authenticate($this->getUserName($user),
154 checkPass($user, $pass) global() argument
197 getUserData($user, $requireGroups = true) global() argument
316 cleanUser($user) global() argument
568 modifyUser($user, $changes) global() argument
652 getUserDomain($user) global() argument
666 getUserName($user) global() argument
764 filter($user, $info) global() argument
[all...]
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG521 - The overall_class is now up to the user, and the language-code is _always_ added as a class (milian)
996 - Line numbers aren't highlighted when a user selects the code
1020 - Method header() modified to allow the user to choose whether the code is surrounded in
/dokuwiki/lib/plugins/acl/lang/en/
H A Dhelp.txt5 * The form above allows you to see and modify the permissions of a selected user or group.
/dokuwiki/lib/plugins/authplain/
H A Dauth.php17 /** @var array user cache */
58 * Check user+password
60 * Checks if the given user exists and the given
64 * @param string $user
68 public function checkPass($user, $pass)
70 $userinfo = $this->getUserData($user);
73 return auth_verifyPassword($pass, $this->users[$user]['pass']);
77 * Return user info
79 * Returns info about the given user needs to contain
82 * name string full name of the user
67 checkPass($user, $pass) global() argument
90 getUserData($user, $requireGroups = true) global() argument
108 createUserLine($user, $pass, $name, $mail, $grps) global() argument
137 createUser($user, $pwd, $name, $mail, $grps = null) global() argument
173 modifyUser($user, $changes) global() argument
354 cleanUser($user) global() argument
455 filter($user, $info) global() argument
[all...]
/dokuwiki/inc/lang/en/
H A Dupdateprofile.txt3 You only need to complete those fields you wish to change. You may not change your user name.
/dokuwiki/data/
H A Ddeleted.files20 lib/images/interwiki/user.png
/dokuwiki/inc/Extension/
H A DAuthPlugin.php35 'logout' => true, // can the user logout again? (eg. not possible with HTTP auth)
89 // can at least one of the user's properties be changed?
115 * example for enforcing a user name schema.
147 * Log off the current user [ OPTIONAL ]
165 * authenticate a user - all other DokuWiki internals
180 * the function needs to check if the user is logged in
189 * @param string $user Username
195 public function trustExternal($user, $pass, $sticky = false)
209 $_SERVER['REMOTE_USER'] = $user;
210 $_SESSION[DOKU_COOKIE]['auth']['user']
197 trustExternal($user, $pass, $sticky = false) global() argument
233 checkPass($user, $pass) global() argument
254 getUserData($user, $requireGroups = true) global() argument
279 createUser($user, $pass, $name, $mail, $grps = null) global() argument
295 modifyUser($user, $changes) global() argument
406 cleanUser($user) global() argument
456 useSessionCache($user) global() argument
[all...]
/dokuwiki/inc/File/
H A DPageFile.php204 'user' => $INPUT->server->str('REMOTE_USER'),
289 ['date' => $date, 'type' => $changeType, 'user' => $user, ] = $logEntry;
309 if ($user) {
311 $meta['user'] = $user;
318 if ($user) {
319 $meta['contributor'][$user] = $INFO['userinfo']['name'] ?? null;
323 if ($user) {
324 $meta['contributor'][$user]
[all...]
/dokuwiki/inc/HTTP/
H A DHTTPClient.php47 public $user;
185 if (isset($uri['user'])) $this->user = $uri['user'];
239 if ($this->user) {
240 $headers['Authorization'] = 'Basic ' . base64_encode($this->user . ':' . $this->pass);
46 public $user; global() variable in dokuwiki\\HTTP\\HTTPClient
/dokuwiki/lib/plugins/acl/
H A Dstyle.css87 background: transparent url(pix/user.png) 0px 1px no-repeat;
91 background: transparent url(pix/user.png) right 1px no-repeat;
/dokuwiki/lib/plugins/authad/adLDAP/
H A DadLDAP.php43 * based directory. If you bind as a domain user, you can't fetch as
228 * The user class
239 public function user() { function in adLDAP
685 * Validate a user's login credentials
687 * @param string $username A user's AD username
688 * @param string $password A user's AD password
709 // Bind as the user
829 if ($attributes["password"]){ $mod["unicodePwd"][0]=$this->user()->encodePassword($attributes["password"]); }
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPExchange.php57 * @param string $username The username of the user to add the Exchange account to
58 * @param array $storageGroup The mailbox, Exchange Storage Group, for the user account, this must be a full CN
60 * @param string $emailAddress The primary email address to add to this user
91 $result = $this->adldap->user()->modify($username, $attributes, $isGUID);
103 * @param string $username The username of the user to add the X400 to to
119 // Find the dn of the user
120 $user = $this->adldap->user()->info($username, array("cn","proxyaddresses"), $isGUID);
121 if ($user[0]["dn"] === NULL) { return false; }
122 $userDn = $user[
[all...]
H A DadLDAPGroups.php91 * Add a user to a group
93 * @param string $group The group to add the user to
94 * @param string $user The user to add to the group
98 public function addUser($group, $user, $isGUID = false) argument
100 // Adding a user is a bit fiddly, we need to get the full DN of the user
103 // Find the user's dn
104 $userDn = $this->adldap->user()->dn($user,
250 removeUser($group, $user, $isGUID = false) global() argument
[all...]
H A DadLDAPUsers.php58 * Validate a user's login credentials
60 * @param string $username A user's AD username
61 * @param string $password A user's AD password
70 * Create a user
74 * @param array $attributes The attributes to set to the user account
104 $add["objectclass"][3] = "user"; //person?
165 * Delete a user account
183 * Groups the user is a member of
288 * Determine if a user is in a specific group
315 * Determine a user'
[all...]

123