Extension:NewUserActions/zh
Jump to navigation
Jump to search
The extension is still a work in progress.
NewUserActions 发布状态: 试验版 |
|
---|---|
实现 | 使用者動態 , 钩子 |
描述 | Run actions when a user is newly created. |
作者 | Sébastien Santoro (Dereckson讨论) |
MediaWiki | 1.23+ |
PHP | 5.4+ |
数据庫更改 | 否 |
许可协议 | GNU通用公眾授權條款2.0或更新版本 |
下载 | |
|
|
翻譯NewUserActions擴充功能如在translatewiki.net可用 | |
问题 | 尚未完成的工作 · 回報錯誤 |
The NewUserActions extension executes configurable actions when a new wiki account is created. It has been inspired by 扩展:新用户消息 .
Actions available
Create user page
This action allow to create a user page, following a specific template. This can for example be used to offer a generic starting template for user pages.
安装
- 下载文件,并将其放置在您
extensions/
文件夹中的NewUserActions
目录内。 - 将下列代码放置在您的LocalSettings.php的底部:
require_once "$IP/extensions/NewUserActions/NewUserActions.php";
- 根据需要配置
完成 – 在您的wiki上导航至Special:Version,以验证扩展已成功安装。
配置
Global variables
There are some global variables which affect the operation of the extension. These should be set in your LocalSettings.php file.
Variable | 默认值 | 含义 |
---|---|---|
$wgNewUserActionsSuppressRC |
false | Specify whether or not the new actions 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.
|
$wgNewUserActionsMinorEdit |
true | Should the actions edit will be marked as minor. |
$wgNewUserActionsOnAutoCreate |
false | Should auto creation (CentralAuth) trigger the actions? |
$wgNewUserActionsCreateUserPage |
false | If true, create a new user page. |
In-wiki configuration
One of the goal of the extension is to improve flexibility. As such, some parameters are configurable on wiki.
Other settings of the extension can be made in the MediaWiki: namespace.
Page title | 默认值 | 含义 |
---|---|---|
MediaWiki:Newuseractions-userpage-template |
Template:New user page |
Specify a template to use as default new user page. |
MediaWiki:Newuseractions-userpage-summary |
Initial content from [[Template:New user page]]. |
Edit summary for the recent changes entry of a new users message. Always in content language. |
MediaWiki:Newuseractions-editor |
New user actions |
Set the username of the user that makes the edits. 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. |