Manual:$wgImplicitGroups/ru
Appearance
Outdated translations are marked like this.
| User rights, access control and monitoring: $wgImplicitGroups | |
|---|---|
| Группы, не отображаемые на Special:ListUsers или где-нибудь еще |
|
| Введено в версии: | 1.12.0 (r28797) |
| Удалено в версии: | всё ещё используется |
| Допустимые значения: | (Array of group names.) |
| Значение по умолчанию: | [ '*', 'user', 'autoconfirmed' ] (1.13+)array( '*', 'user', 'autoconfirmed', 'emailconfirmed' ); (1.12) |
| Другие настройки: По алфавиту | По функциональности | |
Детали
$wgImplicitGroups — массив групп, которые не отображаются на Special:Listusers и на нескольких других местах. Примечание: они не могут быть назначены с помощью Special:Userrights.
Пример синтаксиса
// 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';
Замечание
It would hide only group names in the menu, not the users themselves.