Extensão:NewUserMessage
NewUserMessage Estado da versão: estável |
|||
---|---|---|---|
Implementação | User activity, Hook | ||
Descrição | Add a message to newly created user's talk pages | ||
Autor(es) | Nad, Siebrand | ||
Última versão | 3.6.0 (2016-10-31) | ||
MediaWiki | 1.26+ | ||
PHP | 5.4+ | ||
Alterações à base de dados |
Não | ||
Licença | GNU General Public License 2.0 or later | ||
Exportação (Download) | |||
|
|||
|
|||
|
|||
Traduza a extensão NewUserMessage se ela estiver disponível na wiki translatewiki.net | |||
Verifique a matriz de utilização e versões | |||
Problemas | Tarefas em aberto · Reportar um problema |
The NewUserMessage extension adds a message to the talk pages of newly created wiki accounts.
Usually after a new user registers on a wiki powered by MediaWiki, the message in MediaWiki:Welcomecreation is displayed. This extension allows a message in a specified template to be added into the new user's talk page instead.
In case LiquidThreads is installed, this extension will create a new thread on the user talk page. See In-wiki configuration for details.
Contents
Instalação
- Exporte e coloque o ficheiro, ou ficheiros, num diretório chamado
NewUserMessage
, na sua pastaextensions/
.
- Acrescente o seguinte código ao fundo do ficheiro LocalSettings.php:
wfLoadExtension( 'NewUserMessage' );
- Configure as required
Pronto – Na página especial Special:Version da sua wiki verifique se a extensão foi instalada.
Para utilizadores que tenham o MediaWiki versão 1.26 ou anteriores:
As instruções acima descrevem a nova forma de instalar esta extensão, usando a extensão wfLoadExtension()
Se precisar de instalar esta extensão nestas versões anteriores (MediaWiki 1.26 e anteriores), em vez de wfLoadExtension( 'NewUserMessage' );
, use:
require_once "$IP/extensions/NewUserMessage/NewUserMessage.php";
Configuração
Global variables
There are some global variables which affect the operation of the extension. These should be set in your LocalSettings file after the require_once of the NewUserMessage.php script.
Variável | Default value | Meaning |
---|---|---|
$wgNewUserSuppressRC |
false | Specify whether or not the new user message creation should show up in recent changes. If set to true , those edits won't be displayed even if "show bot edits" is selected on RecentChanges or Watchlist.
|
$wgNewUserMinorEdit |
true | Should the new user message creation be a minor edit? |
$wgNewUserMessageOnAutoCreate |
false | Should auto creation (CentralAuth) trigger a new user message? |
In-wiki configuration
Other settings of the extension can be made in the MediaWiki: namespace.
Page title | Default value | Meaning |
---|---|---|
MediaWiki:Newusermessage-template |
Template:Welcome |
Specify a template to wrap the new user message within. You can create translations (e.g. MediaWiki:Newusermessage-template/es ) that will be used when the registered user has set a different interface language on registration (this is possible through &uselang parameter or more easily through login language links).
|
MediaWiki:Newusermessage-template-subject |
Template:Welcome-subject |
Specify a template to wrap the new user message thread subject within. Only used when LiquidThreads is installed and active on user talk pages. Always preprocessed and substituted by the parser. |
MediaWiki:Newusermessage-template-body |
Template:Welcome-body |
Specify a template to wrap the new user message thread body within. Only used when LiquidThreads is installed and active on user talk pages. |
MediaWiki:Newuseredit-summary |
Adding [[welcome message]]
to new user's talk page |
Edit summary for the recent changes entry of a new users message. Always in content language. |
MediaWiki:Newusermessage-editor |
New user message |
Set the username of the user that makes the edit on user talk pages. If this user does not exist, "MediaWiki default" will show up as editing user. The user set here is marked as reserved and won't be able to login! |
MediaWiki:Newusermessage-signatures |
None |
Optional feature. if it exists and contains a list of user names (* signature newline * etc…), these user names will be added after the template (randomly) along with the date and time. This feature is inactive when LiquidThreads is installed and new user messages are posted as threads. |
MediaWiki:Newusermessage-substitute |
None |
Optional feature. If the page exists and contains any text (but spaces or a single dash ("-")), the welcome template will be substituted in the talk page. |
Note that these items are articles, to edit them go to the article in your browser and edit the text accordingly.
Example NewUserMessage page
A very simple example of the page you should create as Template:Welcome:
== Welcome to our Wiki == Hello {{{name}}} ...
- Template parameters
- {{{name}}}: User name
- {{{realName}}}: Real name (can be empty)
Example NewUserMessage pages with LiquidThreads
Subject
A very simple example of the page you should create as Template:Welcome-subject:
Hello {{{name}}}
This message will be used as the thread subject — preprocessed and substituted. If this page is empty, this extension will not do anything when LiquidThreads is installed.
- Template parameter
- name: User name (user real name if used at registration)
Body
A very simple example of the page you should create as Template:Welcome-body:
Welcome to our Wiki, {{{realName|{{{name}}}}}}
This message will be used as the thread body. It will be substituted if MediaWiki:Newusermessage-substitute has contents. If this page is empty, this extension will not do anything when LiquidThreads is installed.
{{{realName|{{{name}}}}}}
syntax currently does not work. As a workaround {{#if: {{{realName|}}} | {{{realName}}} | {{{name}}} }}
may be used if the ParserFunctions extension is available.- Template parameters
- name: User name
- realName: User real name
Hooks
This extension adds one new hook:
See also
- Extension:AutomaticBoardWelcome — part of Social tools
![]() | This extension is being used on one or more Wikimedia projects. This probably means that the extension is stable and works well enough to be used by such high-traffic websites. Look for this extension's name in Wikimedia's CommonSettings.php and InitialiseSettings.php configuration files to see where it's installed. A full list of the extensions installed on a particular wiki can be seen on the wiki's Special:Version page. |
- Pages using duplicate arguments in template calls
- GPL licensed extensions/pt
- Stable extensions/pt
- User activity extensions/pt
- Hook extensions/pt
- Extensions in Wikimedia version control/pt
- AddNewAccount extensions/pt
- AuthPluginAutoCreate extensions/pt
- UserGetReservedNames extensions/pt
- LocalUserCreated extensions/pt
- All extensions/pt
- Extensions used on Wikimedia/pt