Extension:InviteSignup

This page is a translated version of the page Extension:InviteSignup and the translation is 18% complete.
Příručka k rozšířením MediaWiki
InviteSignup
Stav rozšíření: stabilní
Implementace Identita uživatele , Speciální stránka
Popis Umožňuje pozvat uživatele k registraci do uzavřené wiki
Autoři Niklas Laxström (Nikerabbitdiskuse)
Nejnovější verze 1.0.0+2021-09-01
MediaWiki >= 1.39.0
Změny v databázi Ano
Composer mediawiki/invite-signup
Tabulky invitesignup
Licence GNU General Public License 2.0 nebo novější
Stáhnout
  • $wgInviteSignupHash
  • $wgISGroups
  • invitesignup
Čtvrtletní stahování 17 (Ranked 111st)
Přeložte rozšíření InviteSignup, používá-li lokalizaci z translatewiki.net
Problémy Otevřené úkoly · Nahlásit chybu

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.

Installation

  • Stáhněte soubor/y a vložte je do adresáře pojmenovaného InviteSignup ve vaší složce extensions/.
    Vývojáři a přispěvatelé kódu by si místo toho měli nainstalovat rozšíření from Git pomocí:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/InviteSignup
  • Na konec vašeho souboru LocalSettings.php přidejte následující kód:
    wfLoadExtension( 'InviteSignup' );
    
  • Spusťte aktualizační skript, který automaticky provede všechny nezbytné databázové změny, jaké rozšíření vyžaduje.
  • You will need to give the invitesignup permission 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 $wgISGroups to 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 Dokončeno – Přejděte na stránku Special:Version vaší wiki a zkontrolujte, zda bylo rozšíření úspěšně nainstalováno.

See also