Manual:$wgAddGroups
From MediaWiki.org
| User Access: $wgAddGroups | |
|---|---|
| Controls who can add specific groups using Special:Userrights. |
|
| Introduced in version: | 1.11.0 |
| Removed in version: | still in use |
| Allowed values: | array |
| Default value: | array() |
Other settings: Alphabetical | By Function
Details [edit]
If a group can add any right (example: bureaucrats can add any right):
$wgAddGroups['bureaucrat'] = true;
If a group can add only some rights (example: bureaucrats can add only sysop and bot groups):
$wgAddGroups['bureaucrat'] = array( 'sysop', 'bot' );
| MediaWiki version: | ≥ 1.12 |
Note that groups which may only grant some rights (like bureaucrats in this example) need to have the userrights privilege set to false, otherwise they will still be able to add all groups (except in 1.11).
$wgGroupPermissions['bureaucrat']['userrights'] = false;
Alternatively, $wgAddGroups can be defined without potentially overwriting an extension's definition:
$wgAddGroups['bureaucrat'][] = 'sysop'; $wgAddGroups['bureaucrat'][] = 'bot';
See also [edit]
- Manual:$wgRemoveGroups
- Manual:$wgGroupsAddToSelf
- Manual:$wgGroupsRemoveFromSelf
- Manual:$wgGroupPermissions
- Manual:User rights management - information about managing and the assignment of user groups.
| Language: | English • Deutsch • español • 日本語 • polski • русский • 中文 • 中文(繁體) |
|---|