Extension:UserGroups

Category:Unmaintained extensions#UserGroups Category:Extensions without an imageCategory:Extensions without a compatibility policyCategory:GPL licensed extensions
MediaWiki extensions manual
UserGroups
Release status: unmaintainedCategory:Unmaintained extensions
Implementation Special page Category:Special page extensions, User rights Category:User rights extensions
Description Provides finer control over user groups and user rights.
Author(s) Withoutaname
Latest version 1.0.0
MediaWiki 1.24+Category:Extensions with manual MediaWiki version
PHP 5.3.10+
Database changes No
License GNU General Public License 2.0 or later
Download Category:Extensions in Wikimedia version control
Quarterly downloads 7 (Ranked 89th)
Translate the UserGroups extension if it is available at translatewiki.net
Category:All extensions

The UserGroups extension adds a special page called Special:UserGroups that allows the user accessing it the ability to create, delete, modify and configure user groups in terms of the user rights registrations or associations with it. It could be thought of as a revival of the now defunct Extension:GroupPermissionsManager. This is different from Special:UserRights, which only determines how to allocate user rights to certain users based upon membership of certain user groups.

It is not possible to configure $wgAddGroups or $wgRemoveGroups that way; such must be done in LocalSettings.php. Also, be careful when removing groups - doing so incorrectly can lock you out of your wiki! It is not possible to remove some system-created rights (such as CheckUser) completely through this extension; see Manual:User rights instead on how to do this manually.

If you are still locked out, the last options are to have someone else grant you the groups again, or at worst (if you are the only one) to grant yourself the rights manually via the database in the user_groups table.

Installation

  • Download and move the extracted UserGroups folder to your extensions/ directory.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/UserGroups
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'UserGroups' );
    
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

User rights

  • modifygroups - Determines control of access to the Special:UserGroups special page interface, or in essence who is allowed to modify and configure user groups and their associated permissions. By default, this access is restricted to bureaucrats.

However, if you want to grant this right to other groups, add this to LocalSettings.php.

$wgGroupPermissions['sysop']['modifygroups'] = true;

See also

Category:All extensions Category:Extensions in Wikimedia version control Category:Extensions which add rights Category:Extensions with manual MediaWiki version Category:Extensions without a compatibility policy Category:Extensions without an image Category:GPL licensed extensions Category:Special page extensions Category:Unmaintained extensions Category:User rights extensions