扩展:新用户注册页面

This page is a translated version of the page Extension:NewSignupPage and the translation is 55% complete.
MediaWiki扩展手册
NewSignupPage
发行状态: 稳定版
实现 MyWiki
描述 增强MediaWiki的默认注册页面
作者 Jack Phoenix
最新版本 1.2.0 (2020-01-06)
MediaWiki 1.39.7+
数据库更改
许可协议 GNU通用公眾授權條款2.0或更新版本
下載
更新日志
示例 任何ShoutWiki网站
  • $wgRegisterTrack
  • $wgNewSignupPagePPURL
  • $wgNewSignupPageToSURL
  • $wgAutoAddFriendOnInvite
  • bypasstoscheck
季度下載量 8 (Ranked 134th)
正在使用的公开wiki数 1,185 (Ranked 232nd)
前往translatewiki.net翻譯NewSignupPage扩展
問題 开启的任务 · 报告错误

The NewSignupPage extension enhances MediaWiki's default signup page, Special:CreateAccount, by requiring users to check a checkbox stating that they've read and understood the site's Terms of Service and Privacy Policy.

除此之外,这一扩展与Social tools 兼容。 If a wiki's admins choose to give out points for recruiting new users, set $wgRegisterTrack to true (and make sure that user_register_track table exists on that wiki's database beforehand!) and you're done.

目前,该扩展程序已配置为链接到ShoutWiki的隐私政策和使用条款。 To personalize it for your wiki, you need to edit MediaWiki:shoutwiki-loginform-tos and MediaWiki:shoutwiki-must-accept-tos.

安裝

  • 下载文件,并将其放置在您extensions/文件夹中的NewSignupPage目录内。
    开发者和代码贡献人员应从Git安装扩展,输入:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/NewSignupPage
  • 将下列代码放置在您的LocalSettings.php 的底部:
    wfLoadExtension( 'NewSignupPage' );
    
  • If you set $wgRegisterTrack = true;, you need to create the user_register_track table in your database; you can do this from command line with php maintenance/sql.php extensions/NewSignupPage/user_register_track.sql
  •   完成 – 在您的wiki上导航至Special:Version,以验证已成功安装扩展。

用户权限

This extension adds a new user right, bypasstoscheck, which by default isn't given to any group. Users with this right can create new accounts without checking the "I accept the site's Terms of Service" checkbox.

User points

  • $wgUserStatsPointValues['referral_complete']set this to something to give out points for referring a new user successfully to the site.

自定义复选框消息

This extension adds a new checkbox in Special:CreateAccount (right below the Remember my login on this computer checkbox). You can edit the text for this checkbox by editing the system message in MediaWiki:Newsignuppage-loginform-tos.

参数

Name Description Default
$wgAutoAddFriendOnInvite if the new user was referred to the site by an existing user, should we make them friends automatically? false
$wgRegisterTrack whether to track registrations into the user_register_track DB table. false
$wgForceNewSignupPageInitialization initialize the extension, even if InviteEmail or UserRelationship classes do not exist? Useful for testing.

参见