Manual:$wgGroupsAddToSelf/ko
| User rights, access control and monitoring: $wgGroupsAddToSelf | |
|---|---|
| Use this to allow users to add themselves to specified groups via Special:Userrights. |
|
| 이 변수가 소개된 버전: | 1.12.0 (r29765) |
| 이 변수가 사라진 버전: | 계속해서 쓰이고 있음 |
| 허용값: | (array) |
| 기본값: | [] |
| 기타 설정: 알파벳 순 | 기능별 순 | |
Details
$wgGroupsAddToSelf allows users to add themselves userrights.
| 미디어위키 버전: | ≥ 1.14 |
The syntax since 1.14 is:
$wgGroupsAddToSelf['sysop'][] = 'bot'; // administrators can add themselves to bot group: $wgGroupsAddToSelf['sysop'] = array( 'bot' );
| 미디어위키 버전: | 1.12 – 1.13 |
The syntax of MW 1.12 - 1.13 is:
$wgGroupsAddToSelf = array( 'group1', 'group2', '...' );
Changes in 1.14.0
In r39368, the way this variable works was changed. Before, it allowed every user to add those groups to themselves, now it can be filtered on a per-group basis.
The new syntax is $wgGroupsAddToSelf['group1'] = array( 'group2', 'group3' ); which allows any user in the group "group1" to add the groups "group2" and "group3" to themselves.
The old syntax will still work for allowing every user to add groups to themselves, but it is recommended that you use $wgGroupsAddToSelf['user'] = array( 'group1', 'group2' ); instead.
You may use $wgGroupsAddToSelf['group'] = true; to allow users in that group to add every group to themselves.
같이 보기
- 매뉴얼:$wgAddGroups
- Manual:$wgRemoveGroups
- Manual:$wgGroupsRemoveFromSelf
- 매뉴얼:$wgGroupPermissions
- 매뉴얼:유저 권한 - information about managing and the assignment of user groups.