Home
last modified time | relevance | path

Searched refs:user (Results 26 – 50 of 67) sorted by path

123

/dokuwiki/inc/lang/en/
H A Dregister.txt1 ====== Register as new user ======
H A Dregistermail.txt1 A new user has registered. Here are the details:
H A Dresendpwd.txt3 Please enter your user name in the form below to request a new password for your account in this wiki. A confirmation link will be sent to your registered email address.
H A Dupdateprofile.txt3 You only need to complete those fields you wish to change. You may not change your user name.
/dokuwiki/inc/lang/id/
H A Dconflict.txt3 Versi terbaru dari dokumen yang baru saja Anda Edit telah ada. Ini terjadi ketika user lain telah selesai mengubah halaman, saat Anda sedang meng-edit.
H A Dlocked.txt3 Halaman ini tertutup (terkunci) untuk diedit oleh user lain. Anda harus menunggu sampai user ini menyelesaikan pengeditan, atau masa berlaku penguncian telah berakhir.
H A Dresendpwd.txt3 Masukkan nama user Anda pada form dibawah untuk permintaan perubahan password account Anda di Wiki ini. Link konfirmasi akan dikirimkan melalui alamat email Anda sewaktu registrasi.
/dokuwiki/lib/plugins/acl/
H A Dadmin.php53 * handle user request
87 // user or group choosen?
458 $user = '';
461 $user = $who;
462 $info = $auth->getUserData($user);
471 $perm = auth_aclcheck($check, $user, $groups);
490 if ($user) {
608 //0 is pagename, 1 is user, 2 is acl
701 * Returns the permission which were set for exactly the given user/group
735 // first make sure we won't end up with 2 lines matching this user an
[all...]
H A Dremote.php14 * @return array {Scope: ACL}, where ACL = dictionnary {user/group: permissions_int}
35 * @param string $user The user or group to apply the ACL to
40 public function addAcl($scope, $user, $level)
51 return $apa->addOrUpdateACL($scope, $user, $level);
58 * @param string $user The user or group the ACL applied to
62 public function delAcl($scope, $user)
73 return $apa->deleteACL($scope, $user);
67 addAcl($scope, $user, $level) global() argument
89 delAcl($scope, $user) global() argument
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/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/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...]
/dokuwiki/lib/plugins/authad/
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...]
H A Dplugin.info.txt6 desc Provides user authentication against a Microsoft Active Directory
/dokuwiki/lib/plugins/authldap/
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...]
H A Dplugin.info.txt6 desc Provides user authentication against an LDAP server
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php47 $this->getConf('user'),
64 ['select-user', 'select-user-groups', 'select-groups', 'insert-user', 'insert-group', 'join-group']
69 ['select-user', 'select-user-groups', 'select-groups', 'leave-group', 'delete-user']
74 ['select-user', 'select-user-groups', 'update-user
162 checkPass($user, $pass) global() argument
202 getUserData($user, $requireGroups = true) global() argument
236 createUser($user, $clear, $name, $mail, $grps = null) global() argument
295 modifyUser($user, $changes) global() argument
509 selectUser($user) global() argument
551 deleteUser($user) global() argument
[all...]
/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...]
H A Dplugin.info.txt6 desc Provides user authentication against DokuWiki's local password storage
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php12 * This version of the user manager has been modified to only work with
29 protected $filter = []; // user selection filter(s)
30 protected $start = 0; // index of first user to be displayed
31 protected $last = 0; // index of the last user to be displayed
33 protected $edit_user = ''; // set to user selected for editing
37 protected $lastdisabled = false; // set to true if last user is unknown and last button is hence buggy
114 * Handle user request
251 echo '<td><input type="text" name="userid" class="edit" value="' . $this->htmlFilter('user') . '" /></td>';
260 foreach ($user_list as $user => $userinfo) {
270 echo '<td class="centeralign"><input type="checkbox" name="delete[' . hsc($user)
377 htmlUserForm($cmd, $user = '', $userdata = array(), $indent = 0) global() argument
862 notifyUser($user, $password, $status_alert = true) global() argument
1192 importUser($user, & $error) global() argument
[all...]
H A Dcli.php28 $options->registerOption('verbose', 'Show detailed user information', 'v', false, 'list');
31 $options->registerCommand('add', 'Add an user to auth backend');
37 $options->registerOption('notify', 'Notify user', 'n', false, 'add');
40 $options->registerCommand('delete', 'Deletes user(s) from auth backend');
44 $options->registerCommand('addtogroup', 'Add user to group(s)');
49 $options->registerCommand('removefromgroup', 'Remove user from group(s)');
124 foreach ($list as $username => $user) {
127 $content[] = $user['name'];
128 $content[] = $user['mail'];
129 $content[] = implode(", ", $user['grp
[all...]
/dokuwiki/lib/plugins/usermanager/lang/cs/
H A Dimport.txt4 Sloupce obsahují (v daném pořadí): user-id, celé jméno, emailovou adresu, seznam skupin.
7 Záznamy s duplicitním user-id budou ignorovány.

123