Extension:GlobalUserGroups
現在、この拡張機能は積極的な保守が行われていません! それでも機能する可能性はありますが、バグ報告や機能の要望は無視される可能性が高くなります。 この拡張機能の開発や保守の作業を引き受けることに興味がある場合は、リポジトリの所有権を申請できます。 礼儀として、作者に問い合わせることをお勧めします。 保守を引き継いだ場合、このテンプレートは除去すべきです。また、拡張機能ページの {{Extension }} 基礎情報ボックス内のリストにあなたの名前を保守担当者として追加してください。 |
GlobalUserGroups リリースの状態: 保守されていない |
|
---|---|
実装 | 利用者権限 , 特別ページ |
説明 | Allows the use of defined local user groups as global groups |
作者 | Tim Weyer (SVGトーク) |
最新バージョン | 1.0.1 |
MediaWiki | 1.6 – 1.20+ |
ライセンス | GNU 一般公衆利用許諾書 2.0 以降 |
ダウンロード | |
四半期ごとのダウンロード数 | 2 (Ranked 130th) |
使用中の公開ウィキ | 5,646 (Ranked 54th) |
translatewiki.net で翻訳を利用できる場合は、GlobalUserGroups 拡張機能の翻訳にご協力ください | |
This extension provides the use of defined local user groups as global user groups. The management of global groups is the same as the management of local groups on Special:UserRights.
The extension can distinguish whether a global or a local group is selected (with $wgGlobalUserGroups
, see below). If a global group is selected, the rights will be added to all databases that are defined in $wgLocalDatabases
into user_groups
tables. So the rights are strictly local in every wiki, but all with one click and only one log entry in which wiki the rights were given. The same applies if the rights are removed.
The global rights of users will be shown on Special:ListUsers. Description of the global user rights will be shown on Special:ListGroupRights.
インストール
The installation is simple. For use of global user groups, you must have a shared database.
Note: A group name can not be longer than 16 characters. This has nothing to do with the extension, but with MediaWiki, which only allows a maximum of 16 characters in user_groups
table. The translations can be of any length because just the system name is entered in table(s).
To install this extension, add the following to LocalSettings.php:
require_once( "$IP/extensions/GlobalUserGroups/GlobalUserGroups.php" );
// use extra translations for various user group names and similars
$wgGlobalUserGroupsUseEMWT = true;
// the following groups are defined as global, and intend to award on Special:UserRights listed in all the databases in $wgLocalDatabases are entered into the table 'user_groups' for each user
// for example:
$wgGlobalUserGroups = array(
'bot-global',
'rollback-global',
'sysadmin',
'sysop-global',
);
// databases of the wiki family [indispensable] (if you haven't already set this adjustment)
$wgLocalDatabases = array(
'mainwiki',
'dewiki',
'enwiki',
);
// shared database settings (if you haven't already set this adjustment)
$wgSharedDB = 'yourshareddatabase';
// using a global users list
$wgSharedTables[] = 'user'; // users
$wgSharedTables[] = 'user_properties'; // user's preferences
$wgEnableMWSuggest = true; // show the wiki's database in browsers source code (available but not required)
This could be also added to your LocalSettings.php, GlobalSettings.php or similar
// permissions for global groups
// for example:
$wgGroupPermissions['sysop-global'] = $wgGroupPermissions['sysop']; // copy the local sysop permissions to the global sysop group
$wgGroupPermissions['bot-global'] = $wgGroupPermissions['bot']; // copy the local bot permissions to the global bot group
$wgGroupPermissions['rollback-global']['rollback'] = true; // allows to revert edits by an user with one click
$wgGroupPermissions['rollback-global']['suppressredirect'] = true; // global rollbackers can move a page without automatically creating a redirect
$wgGroupPermissions['sysadmin']['siteadmin'] = true; // system administrators can lock and unlock a database local
$wgGroupPermissions['sysadmin']['userrights'] = true; // system administrators can edit all user rights (global and local memberships)
// bureaucrats can't give global group memberships and a bureaucrat cannot demote another bureaucrat but a bureaucrat can remove the own bureaucrat flag
$wgGroupPermissions['bureaucrat']['userrights'] = false;
$wgAddGroups['bureaucrat'][] = 'bot';
$wgAddGroups['bureaucrat'][] = 'sysop';
$wgAddGroups['bureaucrat'][] = 'bureaucrat';
$wgRemoveGroups['bureaucrat'][] = 'bot';
$wgRemoveGroups['bureaucrat'][] = 'sysop';
$wgGroupsRemoveFromSelf['bureaucrat'][] = 'bureaucrat'; // can remove own bureaucrat flag
Extras
The extension provides translations into English and German available for various global groups. This translations can be activated if you set $wgGlobalUserGroupsUseEMWT to true (activated by default). Currently available translations can be found in GlobalUserGroups.i18n.groups.php. If there are any translations for particular groups are missing, please just report on the talk page.
お問い合わせ
User talk:SVG
Skype: svg.int
wikimedia@svg.name