User rights, access control and monitoring: $wgRemoveGroups
Controls who can remove specific groups using Special:Userrights.
Introduced in version:1.11.0
Removed in version:still in use
Allowed values:(array)
Default value:[]

Details

If a group can remove any right (example: bureaucrats can remove any right):

$wgRemoveGroups['bureaucrat'] = true;

If a group remove only some rights (example: bureaucrats can remove only sysop and bot groups):

$wgRemoveGroups['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 remove all groups.

You can also define $wgRemoveGroups in a way that does not overwrite an extension's definition:

$wgRemoveGroups['bureaucrat'][] = 'sysop';
$wgRemoveGroups['bureaucrat'][] = 'bot';

See also

  • $wgAddGroups
  • $wgGroupsAddToSelf
  • $wgGroupsRemoveFromSelf
  • $wgGroupPermissions
  • Manual:User rights - information about managing and the assignment of user groups.
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.