-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextension.json
48 lines (48 loc) · 963 Bytes
/
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
{
"name": "Protect Site",
"version": "0.5.3",
"author": [
"[http://en.uncyclopedia.co/wiki/User:Dawg Eric Johnston]",
"Chris Stafford",
"Jack Phoenix",
"Martyna Nowicka"
],
"license-name": "GPL-2.0-or-later",
"url": "https://www.mediawiki.org/wiki/Extension:ProtectSite",
"descriptionmsg": "protectsite-desc",
"type": "specialpage",
"requires": {
"MediaWiki": ">= 1.31.0"
},
"config": {
"ProtectSiteExempt": [],
"ProtectSiteDefaultTimeout": "1 hour",
"ProtectSiteLimit": "1 week"
},
"SpecialPages": {
"ProtectSite": "ProtectSite"
},
"MessagesDirs": {
"ProtectSite": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"ProtectSiteAliases": "ProtectSite.alias.php"
},
"AutoloadClasses": {
"ProtectSite": "includes/ProtectSite.php"
},
"AvailableRights": [
"protectsite"
],
"GroupPermissions": {
"bureaucrat": {
"protectsite": true
}
},
"ExtensionFunctions": [
"ProtectSite::setup"
],
"manifest_version": 1
}