확장기능:새 사용자 메시지

From mediawiki.org
This page is a translated version of the page Extension:NewUserMessage and the translation is 19% complete.
미디어위키 확장 기능 설명서
NewUserMessage
출시 상태: 안정
구현 User activity ,
설명 새로 생성된 계정의 토론 문서에 메시지 추가
만든 이
최신 버전 3.6.0 (2016-10-31)
MediaWiki 1.36+
PHP 7.3+
데이터베이스 변경 아니오
라이선스 GNU General Public License 2.0 or later
다운로드
  • $wgNewUserMessageOnAutoCreate
  • $wgNewUserSuppressRC
  • $wgNewUserMinorEdit
Quarterly downloads 17 (Ranked 123rd)
NewUserMessage 확장 기능 번역 (translatewiki.net에서 가능한 경우)
이슈 미해결 작업 · 버그 보고

새 사용자 메시지 확장 기능은 로컬 위키에 새로 생성된 계정의 토론 문서에 자동으로 메시지를 남기는 기능입니다.

특수:계정만들기 페이지를 통해 '계정 만들기' 버튼을 누르면 대개 새 계정이 가입됨과 동시에 MediaWiki:Welcomecreation이 표출됩니다. 이 확장 기능은 해당 메시지를 표출하는 대신에, 새 계정의 토론 문서에 특정한 틀 메시지를 남길 수 있도록 합니다.

설치

  • 파일을 다운로드하고 NewUserMessage 폴더를 extensions/ 디렉토리에 넣어 주세요.
    개발자와 코딩 기여자는 Git을 이용해 확장기능을 다운받는 것이 좋습니다.cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/NewUserMessage
  • 아래의 코드를 LocalSettings.php 코드의 마지막에 추가합니다.
    wfLoadExtension( 'NewUserMessage' );
    
  • Configure as required
  • Yes 완료 – 위키의 ‘Special:Version’에 이동해서, 확장기능이 올바르게 설치된 것을 확인합니다.

설정

전역 변수

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.

Variable 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). 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. 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.
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)

See also