forked from wikimedia/mediawiki-extensions-NewSignupPage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
49 lines (49 loc) · 1.09 KB
/
extension.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "New Signup Page",
"version": "0.9.1",
"author": [
"Jack Phoenix"
],
"license-name": "GPL-2.0+",
"url": "https://www.mediawiki.org/wiki/Extension:NewSignupPage",
"descriptionmsg": "newsignuppage-desc",
"type": "other",
"callback": "NewSignupPage::registerExtension",
"config": {
"RegisterTrack": false,
"AutoAddFriendOnInvite": false,
"ForceNewSignupPageInitialization": false
},
"MessagesDirs": {
"NewSignupPage": [
"i18n"
]
},
"AutoloadClasses": {
"NewSignupPage": "NewSignupPage.class.php",
"NewSignupPageAuthenticationRequest": "NewSignupPageAuthenticationRequest.php",
"NewSignupPageSecondaryAuthenticationProvider": "NewSignupPageSecondaryAuthenticationProvider.php"
},
"Hooks": {
"BeforePageDisplay": [
"NewSignupPage::onBeforePageDisplay"
]
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "NewSignupPage"
},
"ResourceModules": {
"ext.newsignuppage": {
"scripts": "NewSignupPage.js",
"messages": [
"badretype"
],
"position": "bottom"
}
},
"AvailableRights": [
"bypasstoscheck"
],
"manifest_version": 1
}