User rights, access control and monitoring: $wgImplicitGroups
Groups that aren't shown on Special:Listusers or somewhere else
Introduced in version:1.12.0 (r28797)
Removed in version:still in use
Allowed values:(Array of group names.)
Default value:[ '*', 'user', 'autoconfirmed' ] (1.13+)
array( '*', 'user', 'autoconfirmed', 'emailconfirmed' ); (1.12)

Details

$wgImplicitGroups is an array of groups that are not shown in Special:Listusers and on a few other places. Note that they cannot be assigned through Special:Userrights.

Syntax example

// <translate nowrap><!--T:10--> defining a set of user groups which should not be shown</translate>
$wgImplicitGroups = [ '*', 'user', 'autoconfirmed', 'emailconfirmed', 'sysop', 'bureaucrat', 'bot' ];
// <translate nowrap><!--T:11--> adding a single user group to an existing set</translate>
$wgImplicitGroups[] = 'bot';

Note

It would hide only group names in the menu, not the users themselves.

See also

  • UserEffectiveGroups
  • $wgGroupPermissions
  • Manual:User rights
  • Manual:Preventing access
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.