Manual:$wgImplicitGroups/ja

From Linux Web Expert

<translate> User rights, access control and monitoring</translate>: $wgImplicitGroups
Special:Listusers や他の場所で表示しないグループ
<translate> Introduced in version:</translate>1.12.0 (r28797)
<translate> Removed in version:</translate><translate> still in use</translate>
<translate> Allowed values:</translate>(グループ名の配列。)
<translate> Default value:</translate>[ '*', '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';

注記

これはメニューからグループ名を隠すのみであり、利用者自体を隠すわけではありません。

関連項目