forked from miraheze/ManageWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
222 lines (222 loc) · 6.89 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
{
"name": "ManageWiki",
"author": [
"Southparkfan",
"John Lewis",
"MacFan4000",
"Reception123"
],
"url": "https://github.com/miraheze/ManageWiki",
"descriptionmsg": "managewiki-desc",
"type": "specialpage",
"requires": {
"extensions": {
"CreateWiki": "*"
}
},
"APIListModules": {
"wikiconfig": "ApiQueryWikiConfig"
},
"AvailableRights": [
"managewiki",
"managewiki-editdefault",
"managewiki-restricted"
],
"SpecialPages": {
"DeletedWikis": "SpecialDeletedWikis",
"ManageWiki": "SpecialManageWiki",
"ManageWikiDefaultPermissions": "SpecialManageWikiDefaultPermissions",
"ManageWikiExtensions": "SpecialManageWikiExtensions",
"ManageWikiNamespaces": "SpecialManageWikiNamespaces",
"ManageWikiPermissions": "SpecialManageWikiPermissions",
"ManageWikiSettings": "SpecialManageWikiSettings"
},
"JobClasses": {
"MWScriptJob": "MWScriptJob",
"NamespaceMigrationJob": "NamespaceMigrationJob"
},
"LogActionsHandlers": {
"managewiki/delete": "LogFormatter",
"managewiki/delete-group": "LogFormatter",
"managewiki/settings": "LogFormatter",
"managewiki/rename": "LogFormatter",
"managewiki/rights": "LogFormatter",
"managewiki/namespaces": "LogFormatter",
"managewiki/namespaces-delete": "LogFormatter",
"managewiki/undelete": "LogFormatter"
},
"LogTypes": [
"managewiki"
],
"MessagesDirs": {
"ManageWiki": [
"i18n"
]
},
"AutoloadClasses": {
"ApiQueryWikiConfig": "includes/api/ApiQueryWikiConfig.php",
"ManageWiki": "includes/ManageWiki.php",
"ManageWikiCDB": "includes/helpers/ManageWikiCDB.php",
"ManageWikiDeletedWikiPager": "includes/helpers/ManageWikiDeletedWikiPager.php",
"ManageWikiFormFactory": "includes/formFactory/ManageWikiFormFactory.php",
"ManageWikiFormFactoryBuilder": "includes/formFactory/ManageWikiFormFactoryBuilder.php",
"ManageWikiHooks": "includes/ManageWikiHooks.php",
"ManageWikiInstaller": "includes/helpers/ManageWikiInstaller.php",
"ManageWikiNamespaces": "includes/helpers/ManageWikiNamespaces.php",
"ManageWikiPermissions": "includes/helpers/ManageWikiPermissions.php",
"ManageWikiRequirements": "includes/helpers/ManageWikiRequirements.php",
"MWScriptJob": "includes/jobs/MWScriptJob.php",
"NamespaceMigrationJob": "includes/jobs/NamespaceMigrationJob.php",
"SpecialDeletedWikis": "includes/specials/SpecialDeletedWikis.php",
"SpecialManageWiki": "includes/specials/SpecialManageWiki.php",
"SpecialManageWikiDefaultPermissions": "includes/specials/SpecialManageWikiDefaultPermissions.php",
"SpecialManageWikiExtensions": "includes/specials/SpecialManageWikiExtensions.php",
"SpecialManageWikiNamespaces": "includes/specials/SpecialManageWikiNamespaces.php",
"SpecialManageWikiPermissions": "includes/specials/SpecialManageWikiPermissions.php",
"SpecialManageWikiSettings": "includes/specials/SpecialManageWikiSettings.php"
},
"Hooks": {
"CreateWikiCreation": [
"ManageWikiHooks::onCreateWikiCreation"
],
"CreateWikiDeletion": [
"ManageWikiHooks::onCreateWikiDeletion"
],
"CreateWikiRename": [
"ManageWikiHooks::onCreateWikiRename"
],
"CreateWikiStatePrivate": [
"ManageWikiHooks::onCreateWikiStatePrivate"
],
"CreateWikiStatePublic": [
"ManageWikiHooks::onCreateWikiStatePublic"
],
"CreateWikiTables": [
"ManageWikiHooks::onCreateWikiTables"
],
"LoadExtensionSchemaUpdates": [
"ManageWikiHooks::fnManageWikiSchemaUpdates"
],
"SetupAfterCache": [
"ManageWikiHooks::onSetupAfterCache"
],
"SkinBuildSidebar": [
"ManageWikiHooks::fnNewSidebarItem"
]
},
"ResourceModules": {
"ext.managewiki.permissions": {
"styles": "ext.managewiki.permissions.css"
}
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "ManageWiki/modules"
},
"config": {
"ManageWiki": {
"description": "Array of Booleans. Which modules of ManageWiki should be enabled on the wiki.",
"public": true,
"value": {
"cdb": false,
"core": false,
"extensions": false,
"namespaces": false,
"permissions": false,
"settings": false
}
},
"ManageWikiBackendModules": {
"description": "Array. List of backend ManageWiki modules. Shouldn't be changed.",
"public": true,
"value": [
"cdb",
"core"
]
},
"ManageWikiCDBDirectory": {
"description": "String. Directory to store CDB files in. This will enable CDB capabilities in ManageWiki.",
"public": true,
"value": false
},
"ManageWikiExtensions": {
"description": "Array. An array of extensions enabled within the wiki farm.",
"public": true,
"value": false
},
"ManageWikiExtensionsDefault": {
"description": "Array. An array of default extensions.",
"public": true,
"value": false
},
"ManageWikiNamespacesAdditional": {
"description": "Array. Additional settings available for namespaces.",
"public": true,
"value": false
},
"ManageWikiNamespacesExtraContentModels": {
"description": "Array. Additional content models not known.",
"public": true,
"value": false
},
"ManageWikiSettings": {
"description": "Array. An array of settings that can be managed through Special:ManageWiki",
"public": true,
"value": false
},
"ManageWikiPermissionsAdditionalAddGroups": {
"description": "Array. ManageWiki's version of $wgAddGroups.",
"public": true,
"value": false
},
"ManageWikiPermissionsAdditionalAddGroupsSelf": {
"description": "Array. ManageWiki's version of $wgGroupsAddToSelf.",
"public": true,
"value": false
},
"ManageWikiPermissionsAdditionalRemoveGroups": {
"description": "Array. ManageWiki's version of $wgRemoveGroups.",
"public": true,
"value": false
},
"ManageWikiPermissionsAdditionalRemoveGroupsSelf": {
"description": "Array. ManageWiki's version of $wgGroupsRemoveFromSelf",
"public": true,
"value": false
},
"ManageWikiPermissionsAdditionalRights": {
"description": "Array. ManageWiki's version of $wgGroupPermissions.",
"public": true,
"value": false
},
"ManageWikiPermissionsBlacklistGroups": {
"description": "Array. An array of usergroups which ManageWiki can't manage. Will prevent users creating same named groups as well.",
"public": true,
"value": false
},
"ManageWikiPermissionsBlacklistRights": {
"description": "Array. An array of user rights that ManageWiki can not manage and assign on wiki.",
"public": true,
"value": [
"managewiki-restricted"
]
},
"ManageWikiPermissionsDefaultPrivateGroup": {
"description": "String. Name of a group to add to private wikis. False disables this function.",
"public": true,
"value": false
},
"ManageWikiHelpUrl": {
"description": "String. URL of a help page for ManageWiki on the local wiki farm.",
"public": true,
"value": false
},
"ManageWikiSidebarLinks": {
"description": "Boolean. Whether to show quick links to ManageWiki pages in the side bar.",
"public": true,
"value": true
}
},
"callback": "ManageWikiHooks::onRegistration",
"manifest_version": 2
}