Manual:$wgImplicitGroups

This page is a translated version of the page Manual:$wgImplicitGroups and the translation is 83% complete.
利用者権限、アクセス制御、モニタリング: $wgImplicitGroups
Special:Listusers や他の場所で表示しないグループ
導入されたバージョン:1.12.0 (r28797)
除去されたバージョン:使用中
許容される値:(グループ名の配列。)
既定値:[ '*', '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';

注記

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

関連項目