Manual:$wgAddGroups

From mediawiki.org
User rights, access control and monitoring: $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:[]

Details[edit]

MediaWiki version:
1.12

By default the bureaucrat user group may grant all rights, because of the following setting:

$wgGroupPermissions['bureaucrat']['userrights'] = true;

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.

$wgGroupPermissions['bureaucrat']['userrights'] = false;

Alternatively, $wgAddGroups can be defined without potentially overwriting an extension's definition:

$wgAddGroups['bureaucrat'][] = 'sysop';
$wgAddGroups['bureaucrat'][] = 'bot';
MediaWiki version:
1.11

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'] = [ 'sysop', 'bot' ];

Troubleshooting[edit]

Not seeing permission checkboxes

If after setting this, you do not see the group checkboxes on the Special:Userrights page for a particular user, it might mean that they're already in that group and that the groups you are in do not allow the removal of a user from the set groups.

Once a user is in a group, defined by this setting the group checkboxes will only show up if $wgRemoveGroups is also set for the group in question.

See also[edit]