-
Notifications
You must be signed in to change notification settings - Fork 2
/
extension.json
36 lines (32 loc) · 874 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
{
"name": "ListTransclusions",
"author": "Patrick Westerhoff",
"version": "2.3",
"url": "http://mediawiki.org/wiki/Extension:ListTransclusions",
"license-name": "MPL-2.0",
"description": "Lists all transcluded templates and used images of a given page",
"descriptionmsg": "listtransclusions-desc",
"type": "specialpage",
"requires": {
"MediaWiki": ">= 1.39.0"
},
"AutoloadClasses": {
"ListTransclusionsHooks": "ListTransclusions.hooks.php",
"SpecialListTransclusions": "SpecialListTransclusions.php"
},
"ExtensionMessagesFiles": {
"ListTransclusionsAlias": "ListTransclusions.alias.php"
},
"MessagesDirs": {
"ListTransclusions": [
"i18n"
]
},
"Hooks": {
"SidebarBeforeOutput": "ListTransclusionsHooks::onSidebarBeforeOutput"
},
"SpecialPages": {
"ListTransclusions": "SpecialListTransclusions"
},
"manifest_version": 1
}