Home
last modified time | relevance | path

Searched refs:users (Results 1 – 25 of 33) sorted by relevance

12

/dokuwiki/lib/plugins/usermanager/_test/
H A DAuthPlugin.php16 public $users = []; variable in dokuwiki\\plugin\\usermanager\\test\\AuthPlugin
32 if (isset($this->users[$user])) {
37 $this->users[$user] = compact('pass', 'name', 'mail', 'grps');
42 public function deleteUsers($users) argument
45 foreach ($users as $user) {
46 if (isset($this->users[$user])) {
47 unset($this->users[$user]);
H A DRemoteApiTest.php60 $this->assertArrayHasKey('user1', $auth->users);
193 $auth->users = [
217 $this->assertArrayNotHasKey('user1', $auth->users);
218 $this->assertArrayHasKey('user2', $auth->users);
/dokuwiki/lib/plugins/authplain/
H A Dauth.php18 protected $users; variable in auth_plugin_authplain
76 return auth_verifyPassword($pass, $this->users[$user]['pass']);
96 if ($this->users === null) $this->loadUserData();
97 return $this->users[$user] ?? false;
166 $this->users[$user] = [
228 if (isset($this->users[$user])) unset($this->users[$user]);
229 $this->users[$newuser] = $userinfo;
237 * @param array $users array of users to be deleted
240 public function deleteUsers($users) argument
244 if (!is_array($users) || $users === []) return 0;
[all …]
/dokuwiki/lib/plugins/authpdo/_test/
H A Dsqlite.test.php188 $users = $auth->retrieveUsers();
189 $this->assertEquals(array($expect['admin'], $expect['tester'], $expect['user']), $users);
191 $users = $auth->retrieveUsers(1); // offset
192 $this->assertEquals(array($expect['tester'], $expect['user']), $users);
194 $users = $auth->retrieveUsers(1, 1); // offset + limit
195 $this->assertEquals(array($expect['tester']), $users);
197 $users = $auth->retrieveUsers(0, -1, array('group' => 'admin')); // full group
198 $this->assertEquals(array($expect['admin'], $expect['tester']), $users);
202 $users = $auth->retrieveUsers(0, -1, array('group' => 'dmi')); // substring
203 $this->assertEquals(array($expect['admin'], $expect['tester']), $users);
[all …]
H A Dmysql.test.php114 * @param array $users
116 protected function runGeneralTests(auth_plugin_authpdo $auth, $users) { argument
123 $this->assertGreaterThanOrEqual(count($users), count($list), $info);
133 $this->assertGreaterThanOrEqual(count($users), $count);
/dokuwiki/_test/mock/
H A DAuthDeletePlugin.php20 public function deleteUsers($users) { argument
21 return in_array($_SERVER['REMOTE_USER'], $users);
/dokuwiki/_test/tests/inc/
H A Dparserutils_set_metadata.test.php19 static $users = [
34 if(!isset($users[$user])) throw new RuntimeException('requested non-existing user');
38 $USERINFO = $users[$user];
/dokuwiki/conf/
H A Dusers.auth.php.dist1 # users.auth.php
H A Dmysql.conf.php.example9 * TABLE users
48 $conf['plugin']['authmysql']['TablesToLock']= array("users", "users AS u","groups", "groups AS g", …
68 JOIN users AS u ON u.uid=ug.uid
86 FROM users
98 FROM groups g, users u, usergroup ug
122 FROM users AS u
132 /* Additional SQL statements to add new users with the user manager */
144 $conf['plugin']['authmysql']['addUser'] = "INSERT INTO users
183 FROM users
187 /* Additional SQL statements to delete users with the user manager */
[all …]
/dokuwiki/lib/plugins/usermanager/
H A Dcli.php201 $users = explode(',', $args[0]);
202 $count = $auth->triggerUserMod('delete', [$users]);
204 if ($count != count($users)) {
207 $part2 = str_replace('%d', (count($users) - $count), $this->getLang('delete_fail'));
/dokuwiki/lib/tpl/dokuwiki/lang/en/
H A Dstyle.txt4 your logo is not shown to not logged in users.
/dokuwiki/lib/tpl/dokuwiki/lang/da/
H A Dstyle.txt1 …ot) namespace world readable in the ACL settings or your logo is not shown to not logged in users.
/dokuwiki/inc/Extension/
H A DAuthPlugin.php305 * @param array $users
308 public function deleteUsers($users) argument
/dokuwiki/lib/plugins/usermanager/lang/en/
H A Dimport.txt3 Requires a CSV file of users with at least four columns.
/dokuwiki/vendor/phpseclib/phpseclib/
H A DBACKERS.md3 …hpseclib&utm_medium=referral&utm_campaign=readme) and by contributions by users like you. Thank yo…
/dokuwiki/data/pages/wiki/
H A Ddokuwiki.txt3 …urce [[wp>wiki]] software that doesn't require a database. It is loved by users for its clean and …
19 * [[doku>users|Happy Users]]
51 * [[doku>irc|Talk to other users in the IRC channel]]
H A Dwelcome.txt28 …ki User Forum]] is an excellent way to get in contact with other DokuWiki users and is just one of…
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php45 foreach ($subscriptions as $target => $users) {
50 foreach ($users as $user => $info) {
H A DSubscriberManager.php254 foreach ($subscriptions as $users) {
255 foreach ($users as $user => $info) {
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php347 * @param array $users
350 public function deleteUsers($users) argument
353 foreach ($users as $user) {
388 $users = [];
395 $users[] = $this->getUserData($row['user']);
400 return $users;
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPGroups.php365 $users = $info[0]["member"];
366 if (!is_array($users)) {
372 for ($i=0; $i<$users["count"]; $i++){
373 …tCategory=person)(distinguishedName=" . $this->adldap->utilities()->ldapSlashes($users[$i]) . "))";
380 …Category=group)(distinguishedName=" . $this->adldap->utilities()->ldapSlashes($users[$i]) . "))";
/dokuwiki/vendor/php81_bc/strftime/
H A D.gitattributes2 # Set default behavior, in case users don't have core.autocrlf set.
/dokuwiki/lib/plugins/authad/
H A Dauth.php65 protected $users = []; variable in auth_plugin_authad
411 $this->users = array_fill_keys($result, false);
488 foreach ($this->users as $user => &$info) {
522 $this->users = array_fill_keys($result, false);
534 foreach ($this->users as $user => &$info) {
/dokuwiki/_test/data/pages/wiki/
H A Ddokuwiki.txt19 * [[doku>users|Happy Users]]
52 * [[doku>irc|Talk to other users in the IRC channel]]
/dokuwiki/lib/plugins/authldap/
H A Dauth.php24 protected $users; variable in auth_plugin_authldap
412 if (is_null($this->users)) {
429 $this->users = array_fill_keys($result, false);
436 foreach ($this->users as $user => &$info) {

12