-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
96 lines (95 loc) · 1.84 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "PvX Rate",
"version": "2.0.0",
"author": [
"gcardinal",
"Hhhippo",
"Alexia E. Smith",
"Cameron Chunn",
"PvX Wiki 2010-2020 Contributors"
],
"descriptionmsg": "pvxrate_description",
"license-name": "GPL-2.0-or-later",
"type": "specialpage",
"requires": {
"MediaWiki": ">= 1.37.0"
},
"GroupPermissions": {
"user": {
"ratebuild": true
},
"sysop": {
"vote_rollback": true
}
},
"SpecialPages": {
"UserRatings": {
"class": "Fandom\\PvXRate\\SpecialUserRatings",
"services": [
"Fandom\\PvXRate\\RateService",
"Fandom\\PvXRate\\RatingListRenderer",
"UserIdentityLookup"
]
},
"RecentRatings": {
"class": "Fandom\\PvXRate\\SpecialRecentRatings",
"services": ["Fandom\\PvXRate\\RateService", "Fandom\\PvXRate\\RatingListRenderer"]
}
},
"Actions": {
"rate": "Fandom\\PvXRate\\RateAction"
},
"MessagesDirs": {
"PvXRate": [
"i18n"
]
},
"ServiceWiringFiles": ["ServiceWiring.php"],
"AutoloadNamespaces": {
"Fandom\\PvXRate\\": "src"
},
"ResourceModules": {
"ext.pvxrate": {
"styles": [
"css/pvxrate.css"
],
"dependencies": []
}
},
"ResourceFileModulePaths": {
"localBasePath": "/",
"remoteExtPath": "PvXRate"
},
"config": {
"PvXRateBuildNamespace": "NS_BUILD",
"PvXRateBuildTalkNamespace": "NS_BUILD_TALK",
"PvXRateEditsRequired": 2
},
"namespaces": [
{
"id": 100,
"constant": "NS_BUILD",
"name": "Build"
},
{
"id": 101,
"constant": "NS_BUILD_TALK",
"name": "Build_talk"
}
],
"HookHandlers": {
"main": {
"class": "Fandom\\PvXRate\\PvXRateHooks",
"services": ["NamespaceInfo"]
},
"db": {
"class": "Fandom\\PvXRate\\SchemaHooks"
}
},
"Hooks": {
"LoadExtensionSchemaUpdates": "db",
"SkinTemplateNavigation::Universal": "main"
},
"callback": "Fandom\\PvXRate\\PvXRateHooks::onRegistration",
"manifest_version": 1
}