Extension:NewUserMessage/es

Category:GPL licensed extensions/es
Manual de extensiones de MediaWiki
NewUserMessage
Estado de la versión: estableCategory:Stable extensions/es
Implementación Actividad de usuario Category:User activity extensions/es, Gancho Category:Hook extensions/es
Descripción Publicar un mensaje en las páginas de discusión de las cuentas recién creadas
Autor(es)
Última versión 3.6.0 (2016-10-31)
MediaWiki 1.36+Category:Extensions with manual MediaWiki version
PHP 7.3+
Cambios en la base de datos No
Licencia Licencia Pública General de GNU 2.0 o posterior
Descargar Category:Extensions in Wikimedia version control/es
  • $wgNewUserMessageOnAutoCreate
  • $wgNewUserSuppressRC
  • $wgNewUserMinorEdit
Descargas trimestrales 7 (Ranked 100th)
Traduce la extensión NewUserMessage si está disponible en translatewiki.net
Incidentes Tareas abiertas · Reportar un error
Category:All extensions/es

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.

Instalación

  • Descarga y mueve la carpeta NewUserMessage extraída a tu directorio extensions/.
    Los desarrolladores y contribuidores de código deberían instalar la extensión desde Git en su lugar, usando:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/NewUserMessage
  • Añade el siguiente código en la parte final de tu archivo LocalSettings.php :
    wfLoadExtension( 'NewUserMessage' );
    
  • Configure as required
  • Yes Hecho – Navega a Special:Version en el wiki para verificar que la extensión se haya instalado correctamente.

Configuración

Variables globales

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.

VariableValor predeterminadoSignificado
$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.

Título de páginaValor predeterminadoSignificado
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). Used as a fallback when MediaWiki:Newusermessage-template-body is not set.
MediaWiki:Newusermessage-template-subject Template:Welcome-subject Specify a template to wrap the new user message thread subject within. 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.
MediaWiki:Newuseredit-summary Adding [[Template:Welcome|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. The user set here is marked as reserved and won't be able to login! If this user does not exist, "MediaWiki default" will show up as editing user.
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.
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:

== Te damos la bienvenida a nuestra wiki ==

Hello {{{name}}} ...
Template parameters
  • |name= - User name
  • |realName= - Real name (can be empty)

See also

Category:Extensions used on Wikimedia/es#NewUserMessage/es
Category:All extensions/es Category:Extensions in Wikimedia version control/es Category:Extensions included in Canasta/es Category:Extensions included in Miraheze/es Category:Extensions included in ProWiki/es Category:Extensions included in WikiForge/es Category:Extensions used on Wikimedia/es Category:Extensions with manual MediaWiki version Category:GPL licensed extensions/es Category:Hook extensions/es Category:LocalUserCreated extensions/es Category:Stable extensions/es Category:UserGetReservedNames extensions/es Category:User activity extensions/es