Extension:InviteSignup/ja
Appearance
From mediawiki.org
This page is a translated version of the page Extension:InviteSignup and the translation is 12% complete.
リリースの状態: 安定 |
|
|---|---|
| 実装 | 利用者識別 , 特別ページ |
| 説明 | Allows to invite users to signup to a closed wiki |
| 作者 | Niklas Laxström (Nikerabbit トーク ) |
| 最新バージョン | 1.0.0+2021年09月01日 |
| MediaWiki | >= 1.46.0 |
| データベースの変更 | はい |
| Composer | mediawiki/invite-signup |
|
|
|
|
| ライセンス | GNU 一般公衆利用許諾書 2.0 以降 |
| ダウンロード | |
| translatewiki.net で翻訳を利用できる場合は、InviteSignup 拡張機能の翻訳にご協力ください | |
| 問題点 | 未解決のタスク · バグを報告 |
The InviteSignup extensions allows account creation to be offered to a user on a closed wiki where it's restricted.
The extension adds a "Special:InviteSignup" special page, available to users with invitesignup permission.
- The inviter, from this page, by entering just an e-mail address, can quickly invite a single person to create an account on the wiki.
- The person can then set a username and password, confirming the creation of the account, which is logged; until then, no account is created.
- The inviter can optionally set additional user groups to which the account will be added automatically after creation.
インストール
- ダウンロードして、ファイルを
extensions/フォルダー内のInviteSignupという名前のディレクトリ内に配置します。
開発者とコード寄稿者は、上記の代わりに以下を使用してGitからインストールします:cdextensions/ gitclonehttps://gerrit.wikimedia.org/r/mediawiki/extensions/InviteSignup - 以下のコードを LocalSettings.php ファイルの末尾に追加します:
wfLoadExtension( 'InviteSignup' );
- 更新スクリプト を実行します。このスクリプトは、この拡張機能が必要とするデータベーステーブルを自動的に作成します。
- You will need to give the
invitesignuppermission to at least one user group. To have administrators be able to do the inviting, for instance, add the following to LocalSettings.php:
$wgGroupPermissions['sysop']['invitesignup'] = true;
- You can also set the variable
$wgISGroupsto an array of user groups. When inviting, you can mark to which groups the invited user will be added automatically. For example, with the following setting, you are able to invite 1) normal users 2) translators 3) sysops.
$wgISGroups = [ 'translator', 'sysop' ];
- Yes 完了 – ウィキの「
Special:Version」に移動して、拡張機能が正しくインストールされたことを確認します。
関連項目
- Extension:ConfirmAccount – where the account is requested by the user rather than offered.
- Help:ログイン – Special:CreateAccount allows creation by e-mail, but requires a username to be set because creation is immediate.
- Extension:UserVerification - Manages signups by enforcing email authentication to edit the wiki plus other methods
Categories:
- Stable extensions/ja
- User identity extensions/ja
- Special page extensions/ja
- Extensions supporting Composer/ja
- AddNewAccount extensions/ja
- BeforeInitialize extensions/ja
- LoadExtensionSchemaUpdates extensions/ja
- UserCreateForm extensions/ja
- UserGetRights extensions/ja
- GPL licensed extensions/ja
- Extensions in Wikimedia version control/ja
- All extensions/ja
- Extensions included in BlueSpice/ja
- Extensions included in MyWikis/ja