Manual:$wgAddGroups

This page is a translated version of the page Manual:$wgAddGroups and the translation is 47% complete.
Outdated translations are marked like this.
User rights, access control and monitoring: $wgAddGroups
Controla quién puede añadir grupos específicos usando Special:Userrights.
Introducido en la versión:1.11.0
Eliminado en la versión:aún se usa
Valores permitidos:(array)
Valor predeterminado:[]

Detalles

Versión de MediaWiki:
1.12

Si un grupo puede añadir cualquier derecho (ejemplo: los burócratas pueden añadir cualquier derecho):

$wgGroupPermissions['bureaucrat']['userrights'] = true;

Nótese que los grupos que pueden otorgar sólo algunos derechos (como los burócratas en este ejemplo) necesitan tener el privilegio userrights en falso, de otra manera aún podrán añadir todos los grupos (excepto en 1.11).

$wgGroupPermissions['bureaucrat']['userrights'] = false;

Alternatively, $wgAddGroups can be defined without potentially overwriting an extension's definition:

$wgAddGroups['bureaucrat'][] = 'sysop';
$wgAddGroups['bureaucrat'][] = 'bot';
Versión de MediaWiki:
1.11

Si un grupo puede añadir cualquier derecho (ejemplo: los burócratas pueden añadir cualquier derecho):

$wgAddGroups['bureaucrat'] = true;

Si un grupo puede añadir sólo algunos derechos (ejemplo: los burócratas sólo pueden añadir derechos de bibliotecario y bot):

$wgAddGroups['bureaucrat'] = [ 'sysop', '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're already in that group and that the groups you are in do not allow the removal of a user from the set groups.

Once a user is in a group, defined by this setting the group checkboxes will only show up if $wgRemoveGroups is also set for the group in question.

Véase también