| /dokuwiki/lib/plugins/authad/adLDAP/classes/ |
| H A D | adLDAPGroups.php | 43 * GROUP FUNCTIONS 58 * Add a group to a group 60 * @param string $parent The parent group name 61 * @param string $child The child group name 66 // Find the parent group's dn 73 // Find the child group's dn 91 * 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 [all …]
|
| H A D | adLDAPComputers.php | 100 * Check if a computer is in a group 103 * @param string $group The group to check 107 public function inGroup($computerName, $group, $recursive = NULL) argument 110 if ($group === NULL) { return false; } 117 //return true if the specified group is in the group list 118 if (in_array($group, $groups)){ 144 $extraGroups = $this->adldap->group()->recursiveGroups($groupName);
|
| /dokuwiki/lib/plugins/authpdo/conf/ |
| H A D | default.php | 34 * return: group 39 * Select all the existing group names 41 * return: group, [gid], [*] 64 * input: :user, :name, :mail, :group, :start, :end, :limit 74 * input: :user, :name, :mail, :group 101 * Create a new group 103 * input: :group 105 $conf['insert-group'] = ''; 108 * Make user join group 110 * input: :user, [:uid], group, [:gid], [*] [all …]
|
| /dokuwiki/lib/plugins/config/_test/Setting/ |
| H A D | SettingStringTest.php | 6 * @group plugin_config 7 * @group admin_plugins 8 * @group plugins 9 * @group bundled_plugins
|
| H A D | SettingNumericoptTest.php | 6 * @group plugin_config 7 * @group admin_plugins 8 * @group plugins 9 * @group bundled_plugins
|
| H A D | SettingArrayTest.php | 6 * @group plugin_config 7 * @group admin_plugins 8 * @group plugins 9 * @group bundled_plugins
|
| H A D | SettingNumericTest.php | 6 * @group plugin_config 7 * @group admin_plugins 8 * @group plugins 9 * @group bundled_plugins
|
| H A D | SettingTest.php | 8 * @group plugin_config 9 * @group admin_plugins 10 * @group plugins 11 * @group bundled_plugins
|
| /dokuwiki/lib/plugins/authpdo/_test/mysql/ |
| H A D | wordpress.php | 5 …dpress has no proper groups. This configures the default access permissions as groups. Better group 22 SELECT CONCAT("group",meta_value) AS `group` 35 AND CONCAT("group", M.meta_value) LIKE :group 48 AND CONCAT("group", M.meta_value) LIKE :group 69 'insert-group' => '', 70 'join-group' => '', 71 'leave-group' => '',
|
| H A D | fluxbb.php | 4 * only be in a single group. 20 SELECT g_title AS `group` 26 SELECT g_id AS gid, g_title AS `group` 42 AND G.g_title LIKE :group 54 AND G.g_title LIKE :group 70 'insert-group' => ' 71 INSERT INTO fluy_groups (g_title) VALUES (:group) 73 'join-group' => ' 78 'leave-group' => '
|
| H A D | mybb.php | 5 * mybb stores additional group ids in a commaseparated list of mybb_users.addtionalgroups This 28 SELECT UG.title AS `group`, 36 SELECT gid, title AS `group` 54 AND UG.title LIKE :group 67 AND UG.title LIKE :group 89 'insert-group' => ' 91 VALUES (:group) 93 'join-group' => ' 98 'leave-group' => '', // makes probably no sense to implement
|
| /dokuwiki/lib/plugins/authpdo/_test/ |
| H A D | sqlite.test.php | 17 public function addGroup($group) { argument 18 return parent::addGroup($group); 25 * @group plugin_authpdo 26 * @group plugins 52 …$conf['plugin']['authpdo']['select-user-groups'] = 'SELECT * FROM member AS m, "group" AS g WHERE… 53 $conf['plugin']['authpdo']['select-groups'] = 'SELECT id AS gid, "group" FROM "group"'; 59 FROM user U, member M, "group" G 62 AND G."group" LIKE :group 70 FROM user U, member M, "group" G 73 AND G."group" LIKE :group [all …]
|
| H A D | pgsql.test.php | 6 * @group plugin_authpdo 7 * @group plugins
|
| /dokuwiki/lib/plugins/authpdo/lang/en/ |
| H A D | settings.php | 22 $lang['insert-group'] = 'SQL Statement to insert a new group into the database'; 23 $lang['join-group'] = 'SQL Statement to add a user to an existing group'; 24 $lang['leave-group'] = 'SQL Statement to remove a user from a group';
|
| /dokuwiki/conf/ |
| H A D | mysql.conf.php.example | 64 * %{dgroup} default group name 91 * member of. The plugin accesses the group name as 'group' so an alias 97 $conf['plugin']['authmysql']['getGroups'] = "SELECT name as `group` 119 * %{group} in FilterGroup group name 128 $conf['plugin']['authmysql']['FilterGroup'] = "name LIKE '%{group}'"; 150 /* This statement should add a group to the database. 152 * %{group} group name 155 VALUES ('%{group}')"; 157 /* This statement should connect a user to a group (a user become member 158 * of that group). [all …]
|
| /dokuwiki/lib/plugins/authpdo/ |
| H A D | auth.php | 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'] 94 …['select-user', 'select-user-groups', 'select-groups', 'leave-group', 'join-group', 'insert-group'] 187 * The new user HAS TO be added to the default group by this 226 foreach ($grps as $group) { 227 if (!isset($allgroups[$group])) { 228 $ok = $this->addGroup($group); 235 foreach ($grps as $group) { 236 $ok = $this->joinGroup($userdata, $allgroups[$group]); 302 foreach ($oldgroups as $group) { [all …]
|
| /dokuwiki/lib/styles/ |
| H A D | all.css | 15 .group { 18 .group { 21 .group:before, 22 .group:after { 26 .group:after {
|
| /dokuwiki/lib/plugins/config/_test/ |
| H A D | DocumentationTest.php | 13 * @group plugin_config 14 * @group admin_plugins 15 * @group plugins 16 * @group bundled_plugins 17 * @group internet
|
| /dokuwiki/lib/plugins/acl/lang/en/ |
| H A D | lang.php | 12 $lang['acl_group'] = 'Group:'; 22 $lang['p_group_id'] = 'Members of group <b class="aclgroup">%s</b> currently have the following p… 23 $lang['p_group_ns'] = 'Members of group <b class="aclgroup">%s</b> currently have the following p… 25 $lang['p_choose_id'] = 'Please <b>enter a user or group</b> in the form above to view or edit the … 26 $lang['p_choose_ns'] = 'Please <b>enter a user or group</b> in the form above to view or edit the … 30 $lang['p_isadmin'] = 'Note: The selected group or user has always full permissions because it is… 35 $lang['who'] = 'User/Group';
|
| /dokuwiki/lib/plugins/authpdo/_test/pgsql/ |
| H A D | django.php | 20 SELECT G.name AS "group" 26 SELECT id AS gid, name AS "group" 46 AND G.name LIKE :group 59 AND G.name LIKE :group 81 'insert-group' => ' 82 INSERT INTO auth_group (name) VALUES (:group) 84 'join-group' => ' 87 'leave-group' => '
|
| /dokuwiki/_test/tests/inc/ |
| H A D | auth_loadacl.test.php | 3 * auth_loadACL carries out the user & group substitutions 56 %GROUP% %GROUP% 2 67 %GROUP%:%USER% %USER% 2 68 %GROUP%:%USER% %GROUP% 2 114 %GROUP%:%USER% %USER% 2 115 %GROUP%:* %GROUP% 4
|
| H A D | auth_aclcheck_caseinsensitive.test.php | 49 // user with no matching group 54 // user with matching group 1 59 // user with matching group 2 74 // user with matching admin group 1 79 // user with matching admin group 2 86 * Test aclcheck on @ALL group 88 * The default permission for @ALL group is AUTH_NONE. So we use an 89 * ACL entry which grants @ALL group an AUTH_READ permission to see 109 // user with no matching group 114 // user with matching group
|
| /dokuwiki/lib/plugins/usermanager/_test/ |
| H A D | csv_export.test.php | 4 * @group plugin_usermanager 5 * @group admin_plugins 6 * @group plugins 7 * @group bundled_plugins
|
| /dokuwiki/lib/plugins/usermanager/ |
| H A D | cli.php | 43 // add to group 44 $options->registerCommand('addtogroup', 'Add user to group(s)'); 46 $options->registerArgument('group', 'Group(s), comma-seperated', true, 'addtogroup'); 48 // remove from group 49 $options->registerCommand('removefromgroup', 'Remove user from group(s)'); 51 $options->registerArgument('group', 'Group(s), comma-separated', true, 'removefromgroup'); 216 * Adds an user to group(s) 233 foreach ($newgrps as $group) { 234 if (!in_array($group, $oldinfo['grps'])) { 235 $changes['grps'][] = $group; [all …]
|
| /dokuwiki/lib/plugins/authpdo/lang/ja/ |
| H A D | settings.php | 22 $lang['insert-group'] = 'データベースに新規グループを追加するSQL命令文'; 23 $lang['join-group'] = '既にあるグループにユーザーを追加するSQL命令文'; 24 $lang['leave-group'] = 'グループからユーザーを取り除くSQL命令文';
|