Kézikönyv:$wgRemoveGroups

This page is a translated version of the page Manual:$wgRemoveGroups and the translation is 64% complete.
Outdated translations are marked like this.
User rights, access control and monitoring: $wgRemoveGroups
Annak meghatározása, hogy ki adhat vehet el jogosultságokat a Speciális:Szerkesztői jogok lapon.
Bevezetve:1.11.0
Eltávolítva:használatban
Megengedett értékek:(tömb)
Alapértelmezett érték:[]

Részletek

Ha egy csoport bármely jogot elveheti (a példában a bürokraták):

$wgRemoveGroups['bureaucrat'] = true;

Ha egy csoport csak egyes jogokat vehet meg (a példában a bürokraták csak az adminisztrátori- és botjogot módosíthatják):

$wgRemoveGroups['bureaucrat'] = array( 'sysop', 'bot' );
MediaWiki-verzió:
1.12

Vedd figyelembe, hogy azon csoportok esetében, amelyek csak néhány jogot állíthatnak be (például a bürokraták), a 'userrights' jogosultságot „false” értékre kell állítani, különben továbbra is bármilyen jogosultságot beállíthatnak.

A $wgRemoveGroups-ot oly módon is beállíthatod, hogy ne írja felül egy kiterjesztés beállításait se:

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

Troubleshooting

Not seeing permission checkboxes

If after setting this, you do not see the group checkboxes on the Special:Userrights page for a particular user, it might mean that they've already been removed from that group and that the groups you are in do not allow the removal of a user from other groups.

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.

Lásd még