Extension:UserGroups/zh
此扩展目前不再積極维护! 尽管它可能仍然工作,但任何错误报告或功能请求将很可能被忽略。 如果您对承担开发与维护该扩展的任务工作感兴趣,您可以请求自己的存储库。 作为礼貌,您或许可以联络作者。 或者您应移除该模板,并在页面的$extension信息框中将您自己列为扩展的维护人员。 |
[[Special:MyLanguage/Extension status| |
|
|---|---|
| 实现 | 特殊页面, 用户权限 |
| 描述 | Provides finer control over user groups and user rights. |
| 作者 | Withoutaname |
| 最新版本 | 1.0.0 |
| MediaWiki | 1.24+ |
| PHP | 5.3.10+ |
| 数据库更改 | 否 |
|
modifygroups |
|
| 许可证 | GNU General Public License 2.0 or later |
| 下載 | |
| 前往translatewiki.net翻譯UserGroups扩展 | |
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:用户权限 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
- 下载文件,并解压
UserGroups文件夹到extensions/目录中。
开发者和代码贡献人员应改从Git安装此扩展,输入:cd extensions/ git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/UserGroups
- 請新增下列代码到您的LocalSettings.php文件的底部:
wfLoadExtension( 'UserGroups' );
完成 – 請导航至您的wiki上的Special:Version,以验证此扩展已成功安装。
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;
