-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextension.json
77 lines (77 loc) · 2.06 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "New Signup Page",
"version": "1.3.0",
"author": [
"Jack Phoenix"
],
"license-name": "GPL-2.0-or-later",
"url": "https://www.mediawiki.org/wiki/Extension:NewSignupPage",
"descriptionmsg": "newsignuppage-desc",
"type": "other",
"requires": {
"MediaWiki": ">= 1.35.3"
},
"config": {
"RegisterTrack": {
"value": false,
"path": false,
"description": "Should we track information about referred users into the user_register_track DB table?",
"public": false
},
"AutoAddFriendOnInvite": {
"value": false,
"path": false,
"description": "When a user signs up via a referral link, add the referring user automatically as the new user's friend (and vice-versa)?",
"public": false
},
"NewSignupPageToSURL": {
"value": "http://www.shoutwiki.com/wiki/Terms_of_use",
"path": false,
"description": "Canonical URL to the site's terms of use page",
"public": false
},
"NewSignupPagePPURL": {
"value": "http://www.shoutwiki.com/wiki/Privacy_policy",
"path": false,
"description": "Canonical URL to the site's privacy policy page",
"public": false
}
},
"MessagesDirs": {
"NewSignupPage": [
"i18n"
]
},
"AutoloadClasses": {
"NewSignupPage": "includes/NewSignupPage.class.php",
"NewSignupPageAuthenticationRequest": "includes/auth/NewSignupPageAuthenticationRequest.php",
"NewSignupPageSecondaryAuthenticationProvider": "includes/auth/NewSignupPageSecondaryAuthenticationProvider.php"
},
"AuthManagerAutoConfig": {
"secondaryauth": {
"NewSignupPageSecondaryAuthenticationProvider": {
"class": "NewSignupPageSecondaryAuthenticationProvider"
}
}
},
"Hooks": {
"BeforePageDisplay": "NewSignupPage::onBeforePageDisplay",
"LoadExtensionSchemaUpdates": "NewSignupPage::onLoadExtensionSchemaUpdates"
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "NewSignupPage"
},
"ResourceModules": {
"ext.newsignuppage": {
"scripts": "resources/js/NewSignupPage.js",
"messages": [
"badretype"
]
}
},
"AvailableRights": [
"bypasstoscheck"
],
"manifest_version": 2
}