Manual:$wgRemoveGroups

This page is a translated version of the page Manual:$wgRemoveGroups and the translation is 86% complete.
利用者権限、アクセス制御、モニタリング: $wgRemoveGroups
Special:Userrightsを使って特定のグループを除去できるグループを制御する
導入されたバージョン:1.11.0
除去されたバージョン:使用中
許容される値:(配列)
既定値:[]

詳細

あるグループが権限を除去する場合 (例: bureaucratはどの権限も除去できます):

$wgRemoveGroups['bureaucrat'] = true;

あるグループがいくつかの権限のみを除去する場合 (例: bureaucratはsysopとbotグループのみを除去できます):

$wgRemoveGroups['bureaucrat'] = array( 'sysop', 'bot' );
MediaWiki バージョン:
1.12

(例えば bureaucrat のような) いくつかの権限のみを付与できるグループは userrights 権限を false に設定する必要があることにご注意ください。さもなければそれらのグループはすべてのグループを除去できる状態のままです。

You can also define $wgRemoveGroups in a way that does not overwrite an extension's definition:

$wgRemoveGroups['bureaucrat'][] = 'sysop';
$wgRemoveGroups['bureaucrat'][] = 'bot';

トラブルシューティング

権限のチェックボックスが表示されない

これを設定した後、特定の利用者の Special:Userrights ページでグループのチェックボックスが表示されない場合、それは既にそのグループから除去されており、あなたが所属しているグループでは他のグループからの利用者の除去が許可されていない可能性があります。

Once a user has been removed from a group, defined by this setting the group checkbox for this group will only show up if $wgAddGroups is also set for the group in question.

関連項目