forked from wikimedia/mediawiki-extensions-Lockdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
38 lines (38 loc) · 1022 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
{
"name": "Lockdown",
"author": [
"Daniel Kinzler",
"Platonides",
"Mark A. Hershberger",
"..."
],
"url": "https://www.mediawiki.org/wiki/Extension:Lockdown",
"requires": {
"MediaWiki": ">= 1.31.0"
},
"descriptionmsg": "lockdown-desc",
"license-name": "GPL-2.0-or-later",
"type": "other",
"MessagesDirs": {
"Lockdown": [
"i18n"
]
},
"Hooks": {
"getUserPermissionsErrors": "MediaWiki\\Extensions\\Lockdown\\Hooks::onGetUserPermissionsErrors",
"MediaWikiPerformAction": "MediaWiki\\Extensions\\Lockdown\\Hooks::onMediawikiPerformAction",
"SearchableNamespaces": "MediaWiki\\Extensions\\Lockdown\\Hooks::onSearchableNamespaces",
"SearchGetNearMatchComplete": "MediaWiki\\Extensions\\Lockdown\\Hooks::onSearchGetNearMatchComplete"
},
"AutoloadClasses": {
"MediaWiki\\Extensions\\Lockdown\\Hooks": "src/Hooks.php"
},
"config": {
"NamespacePermissionLockdown": {
"_merge_strategy": "array_plus"
},
"SpecialPageLockdown": [],
"ActionLockdown": []
},
"manifest_version": 1
}