Manual:$wgGroupsRemoveFromSelf
User Access: $wgGroupsRemoveFromSelf | |
---|---|
Use this to allow users to remove themselves from specified groups via Special:Userrights. |
|
Introduced in version: | 1.12.0 (r29765) |
Removed in version: | still in use |
Allowed values: | array |
Default value: | array() |
Other settings: Alphabetical | By Function
Details[edit | edit source]
$wgGroupsRemoveFromSelf allow users to remove themselves userights.
- The syntax since 1.14 is
$wgGroupsRemoveFromSelf['sysop'][] = 'bot'; // adminstrators can remove themselves from bot group: $wgGroupsRemoveFromSelf['sysop'] = array( 'bot' );
- The syntax of MW 1.12 - 1.13 is
$wgGroupsRemoveFromSelf = array( 'group1', 'group2', '...' );
Changes in 1.14.0[edit | edit source]
In r39368, the way this variable works was changed. Before, it allowed every user to remove those groups from themselves, now it can be filtered on a per-group basis.
The new syntax is $wgGroupsRemoveFromSelf['group1'] = array( 'group2', 'group3' );
which allows any user in the group "group1" to remove the groups "group2" and "group3" from themselves. The old syntax will still work for allowing every user to remove groups from themselves, but it is recommended that you use $wgGroupsRemoveFromSelf['user'] = array( 'group1', 'group2' );
instead.
You may use $wgGroupsRemoveFromSelf['group'] = true;
to allow users in that group to remove every group from themselves.
See also[edit | edit source]
- Manual:$wgAddGroups
- Manual:$wgRemoveGroups
- Manual:$wgGroupsAddToSelf
- Manual:$wgGroupPermissions
- Manual:User rights management - information about managing and the assignment of user groups.
Language: | English • 日本語 • русский |
---|