-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathextension.json
More file actions
33 lines (33 loc) · 844 Bytes
/
extension.json
File metadata and controls
33 lines (33 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "CreateUserPage",
"version": "3.1.0",
"author": [
"[https://www.mediawiki.org/wiki/User:Cindy.cicalese Cindy Cicalese]"
],
"url": "https://www.mediawiki.org/wiki/Extension:Create_User_Page",
"descriptionmsg": "createuserpage-desc",
"license-name": "MIT",
"type": "other",
"requires": {
"MediaWiki": ">= 1.40.0"
},
"MessagesDirs": {
"CreateUserPage": [
"i18n"
]
},
"AutoloadClasses": {
"CreateUserPageHooks": "includes/CreateUserPageHooks.php"
},
"Hooks": {
"UserLoginComplete": "CreateUserPageHooks::onUserLoginComplete",
"OutputPageParserOutput": "CreateUserPageHooks::onOutputPageParserOutput"
},
"config": {
"CreateUserPage_PageContent": "{{User}}",
"CreateUserPage_OnLogin": true,
"CreateUserPage_AutoCreateUser": null,
"CreateUserPage_CreateRedirect": false
},
"manifest_version": 1
}