Manual:$wgImplicitGroups/ko
Appearance
| User rights, access control and monitoring: $wgImplicitGroups | |
|---|---|
| Groups that are not shown on Special:Listusers or somewhere else |
|
| 이 변수가 소개된 버전: | 1.12.0 (r28797) |
| 이 변수가 사라진 버전: | 계속해서 쓰이고 있음 |
| 허용값: | (Array of group names.) |
| 기본값: | [ '*', '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 or revoked through Special:Userrights.
Syntax example
// defining a set of user groups which should not be shown
$wgImplicitGroups = [ '*', 'user', 'autoconfirmed', 'emailconfirmed', 'sysop', 'bureaucrat', 'bot' ];
// adding a single user group to an existing set
$wgImplicitGroups[] = 'bot';
Note
It would hide only group names in the menu, not the users themselves.