Home
last modified time | relevance | path

Searched full:users (Results 1 – 25 of 150) sorted by relevance

123456

/dokuwiki/lib/plugins/authplain/
H A Dauth.php18 protected $users; variable in auth_plugin_authplain
39 if (!@is_readable($config_cascade['plainauth.users']['default'])) {
42 if (@is_writable($config_cascade['plainauth.users']['default'])) {
76 return auth_verifyPassword($pass, $this->users[$user]['pass']);
96 if ($this->users === null) $this->loadUserData();
97 return $this->users[$user] ?? false;
161 if (!io_saveFile($config_cascade['plainauth.users']['default'], $userline, true)) {
166 $this->users[$user] = [
194 // don't modify protected users
221 …if (!io_replaceInFile($config_cascade['plainauth.users']['default'], '/^' . $user . ':/', $userlin…
[all …]
/dokuwiki/lib/plugins/usermanager/_test/
H A DAuthPlugin.php8 * All users are stored in a simple array
16 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 Dcsv_import.test.php15 * At present, users imported in individual tests remain in the user list for subsequent tests
67 …dCount, $import_count); // number of new users matches expected n…
69 …quals($expectedCount, $this->countPasswords($new_users)); // new users have a password
70 …pectedCount, $this->usermanager->mock_email_notifications_sent); // new users notified of their …
71 …w_users, $diff_users); // no other users were harmed in the…
H A Dcsv_export.test.php23 * users per _test/conf/users.auth.php
/dokuwiki/lib/plugins/usermanager/lang/en/
H A Dlang.php34 $lang['export_all'] = 'Export All Users (CSV)';
36 $lang['import'] = 'Import New Users';
40 $lang['summary'] = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.';
41 $lang['nonefound'] = 'No users found. %d users total.';
42 $lang['delete_ok'] = '%d users deleted';
58 $lang['note_group'] = 'New users will be added to the default group (%s) if no group is specified.';
68 $lang['import_success_count'] = 'User Import: %d users found, %d imported successfully.';
H A Dimport.txt3 Requires a CSV file of users with at least four columns.
6 For an example of a suitable file, try the "Export Users" function above.
/dokuwiki/lib/plugins/authpdo/_test/
H A Dsqlite.test.php58 $conf['plugin']['authpdo']['list-users'] = 'SELECT DISTINCT login as user
69 $conf['plugin']['authpdo']['count-users'] = 'SELECT COUNT(DISTINCT login) as count
187 // list users
188 $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
[all …]
/dokuwiki/lib/plugins/authad/lang/en/
H A Dsettings.php10 …roup'] = 'Should the real primary group be resolved instead of assuming "Domain Users" (slower).';
16 $lang['update_name'] = 'Allow users to update their AD display name?';
17 $lang['update_mail'] = 'Allow users to update their email address?';
18 $lang['update_pass'] = 'Allow users to update their password? Requires SSL or TLS above.';
/dokuwiki/lib/plugins/authpdo/lang/en/
H A Dsettings.php17 $lang['list-users'] = 'SQL Statement to list users matching a filter';
18 $lang['count-users'] = 'SQL Statement to count users matching a filter';
/dokuwiki/_test/mock/
H A DAuthDeletePlugin.php20 public function deleteUsers($users) { argument
21 return in_array($_SERVER['REMOTE_USER'], $users);
/dokuwiki/inc/lang/en/
H A Dinstall.html5 …ogin and access to DokuWiki's admin menu for installing plugins, managing users, managing access t…
7 <p>Experienced users or users with special setup requirements should use these links for details co…
/dokuwiki/_test/conf/
H A Dacl.auth.php25 users:* @ALL 1
26 users:%USER%:* %USER% 16
/dokuwiki/_test/tests/inc/
H A Dparserutils_set_metadata.test.php18 // prepare fake users
19 static $users = [
34 if(!isset($users[$user])) throw new RuntimeException('requested non-existing user');
38 $USERINFO = $users[$user];
/dokuwiki/conf/
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/inc/Extension/
H A DAuthPlugin.php8 * allows to authenticate users in a plugin
24 'addUser' => false, // can Users be created?
25 'delUser' => false, // can Users be deleted?
31 'getUsers' => false, // can a (filtered) list of users be retrieved?
32 'getUserCount' => false, // can the number of users be retrieved?
279 msg("authorisation method does not allow creation of new users", -1);
300 * Delete one or more users [implement only where required/possible]
305 * @param array $users
306 * @return int number of users deleted
308 public function deleteUsers($users) argument
[all …]
/dokuwiki/lib/plugins/authpdo/lang/ja/
H A Dsettings.php17 $lang['list-users'] = 'フィルターに一致するユーザーを一覧にするSQL命令文';
18 $lang['count-users'] = 'フィルターに一致するユーザーを数えるSQL命令文';
/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]]
/dokuwiki/lib/plugins/authpdo/_test/mysql/
H A Dfluxbb.php38 'list-users' => '
50 'count-users' => '
82 'users' => array(
H A Dwordpress.php30 'list-users' => '
43 'count-users' => '
73 'users' => array(
/dokuwiki/lib/plugins/authpdo/lang/zh/
H A Dsettings.php18 $lang['list-users'] = '列出与筛选条件匹配用户的SQL语句';
19 $lang['count-users'] = '统计与筛选条件匹配的用户数量的SQL语句';
/dokuwiki/lib/plugins/usermanager/
H A Dremote.php23 * Superuser permission are required to create users.
39 throw new AccessDeniedException('Only admins are allowed to create users', 114);
85 * You need to be a superuser to delete users.
95 throw new AccessDeniedException('Only admins are allowed to delete users', 114);
H A Dcli.php23 "Manage users for this DokuWiki instance\n"
27 $options->registerCommand('list', 'List users');
112 * List the given users
187 * Deletes users
201 $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/plugins/authpdo/conf/
H A Dmetadata.php19 $meta['list-users'] = array('', '_caution' => 'danger');
20 $meta['count-users'] = array('', '_caution' => 'danger');
/dokuwiki/lib/plugins/authpdo/lang/ca/
H A Dsettings.php19 $lang['list-users'] = 'Sentència SQL per listar usuaris que compleixen un fltre';
20 $lang['count-users'] = 'Setència SQL per comptar els usuaris que compleixen un filtre';
/dokuwiki/lib/plugins/authpdo/
H A Dauth.php62 // can Users be created?
67 // can Users be deleted?
97 // can a filtered list of users be retrieved?
99 ['list-users']
102 // can the number of users be retrieved?
104 ['count-users']
343 * Delete one or more users
347 * @param array $users
348 * @return int number of users deleted
350 public function deleteUsers($users) argument
[all …]

123456