Laajennus:NewDuplicateUserMessage
![]() Julkaisustatus: vakaa |
|
---|---|
Toteutus | Käyttäjän toiminta , Kytköspiste |
Kuvaus | Adds a message to the talk pages of newly created duplicate user accounts, which are determined by email address. |
Tekijä(t) | |
Viimeisin versio | 3.6.0 (2016-10-31) |
MediaWiki | 1.26+ |
PHP | 5.4+ |
Tietokantamuutokset | Ei |
Lisenssi | GNU General Public License 2.0 tai myöhempi |
Lataa | GitHub: Note: |
|
|
The NewDuplicateUserMessage extension adds a message to the talk pages of newly created duplicate user accounts, which are determined by email address.
This extension was forked from the NewUserMessage extension. See the documentation for the original extension NewUserMessage.
Asennus
- Download and place the file(s) in a directory called
NewDuplicateUserMessage
in yourextensions/
folder. - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'NewDuplicateUserMessage' );
- Configure as required.
- Tehty – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
To users running MediaWiki 1.26 or earlier:
The instructions above describe the new way of installing this extension using wfLoadExtension()
.
If you need to install this extension on these earlier versions (MediaWiki 1.26 and earlier), instead of wfLoadExtension( 'NewDuplicateUserMessage' );
, you need to use:
require_once "$IP/extensions/NewDuplicateUserMessage/NewDuplicateUserMessage.php";
Kokoonpano
Create the "Template:DuplicateUserWelcome" page on the wiki:
== Duplicate user message ==
You have duplicate accounts: {{{duplicateUsers}}}.
The configuration is the same as the original extension NewUserMessage except instead of "NewUser", use "NewDuplicateUser".
For example:
- Instead of
$wgNewUserSuppressRC = false;
, use$wgNewDuplicateUserSuppressRC = false;
. - Instead of "MediaWiki:Newusermessage-template", use "MediaWiki:Newduplicateusermessage-template".