-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathextension.json
77 lines (77 loc) · 1.63 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": "NetworkNotice",
"version": "3.3.0",
"author": [
"Tephus",
"[https://fo-nttax.de Alex Winkler]"
],
"url": "https://liquipedia.net/",
"descriptionmsg": "networknotice-desc",
"license-name": "MIT",
"type": "other",
"requires": {
"MediaWiki": ">= 1.39.3"
},
"MessagesDirs": {
"NetworkNotice": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"NetworkNoticeAlias": "i18n/NetworkNoticeAlias.php"
},
"AutoloadNamespaces": {
"Liquipedia\\Extension\\NetworkNotice\\": "src/"
},
"HookHandlers": {
"Main": {
"class": "\\Liquipedia\\Extension\\NetworkNotice\\Hooks\\MainHookHandler"
},
"Schema": {
"class": "\\Liquipedia\\Extension\\NetworkNotice\\Hooks\\SchemaHookHandler"
}
},
"Hooks": {
"BeforePageDisplay": "Main",
"LoadExtensionSchemaUpdates": "Schema",
"LPExtensionMenu": [
"Liquipedia\\Extension\\NetworkNotice\\Hooks\\LegacyHooks::onLPExtensionMenu"
],
"SiteNoticeAfter": "Main"
},
"SpecialPages": {
"NetworkNotice": {
"class": "\\Liquipedia\\Extension\\NetworkNotice\\SpecialPage\\SpecialNetworkNotice",
"services": [
"DBLoadBalancer"
]
}
},
"ResourceModules": {
"ext.networknotice.Notice.styles": {
"styles": [
"styles/ext.networknotice.Notice.less"
],
"position": "bottom"
},
"ext.networknotice.Notice.scripts": {
"scripts": [
"scripts/ext.networknotice.Notice.js"
],
"position": "bottom"
}
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "NetworkNotice/resources"
},
"GroupPermissions": {
"sysop": {
"usenetworknotice": true
}
},
"AvailableRights": [
"usenetworknotice"
],
"manifest_version": 2
}