Manual:$wgGroupInheritsPermissions/de-formal

From mediawiki.org
This page is a translated version of the page Manual:$wgGroupInheritsPermissions and the translation is 11% complete.
User rights, access control and monitoring: $wgGroupInheritsPermissions
Groups that should inherit permissions from another group.
Eingeführt in Version:1.38.0 (Gerrit change 710134; git #6f01b0d0)
Entfernt in Version:weiterhin vorhanden
Erlaubte Werte:(array of strings)
Standardwert:[]

Details

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.