Manual:$wgGroupInheritsPermissions

This page is a translated version of the page Manual:$wgGroupInheritsPermissions and the translation is 33% complete.
利用者権限、アクセス制御、モニタリング: $wgGroupInheritsPermissions
Groups that should inherit permissions from another group.
導入されたバージョン:1.38.0 (Gerrit change 710134; git #6f01b0d0)
除去されたバージョン:使用中
許容される値:(文字列の配列)
既定値:[]

詳細

This configuration parameter sets groups that should inherit permissions from another group.

This allows defining a group that inherits its permissions from another group without having to copy all the permission grants over. For example, if you wanted a manual "confirmed" group that had the same permissions as "autoconfirmed":

$wgGroupInheritsPermissions['confirmed'] = 'autoconfirmed';

Recursive inheritance is currently not supported. In the above example, confirmed will only gain the permissions explicitly granted (or revoked) from autoconfirmed, not any permissions that autoconfirmed might inherit.

Note only $wgGroupPermissions, and $wgRevokePermissions will be inherited, not $wgAddGroups, $wgRemoveGroups, $wgGroupsAddToSelf, or $wgGroupsRemoveFromSelf.