This repository has been archived by the owner on Jun 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
extension.json
64 lines (64 loc) · 1.98 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
{
"name": "FacetedCategory",
"version": "1.0.0",
"author": "[https://femiwiki.com/ Femiwiki Team]",
"url": "https://github.com/femiwiki/facetedCategory",
"descriptionmsg": "facetedcategory-desc",
"license-name": "AGPL-3.0-or-later",
"type": "specialpage",
"requires": {
"MediaWiki": ">= 1.36.0",
"extensions": {
"CategoryTree": "*"
}
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\FacetedCategory\\": "includes/"
},
"MessagesDirs": {
"FacetedCategory": ["i18n"]
},
"ResourceModules": {
"ext.facetedCategory.js": {
"scripts": ["facetedCategory.js"]
},
"ext.facetedCategory": {
"position": "top",
"styles": ["facetedCategory.less"]
}
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "FacetedCategory/modules"
},
"HookHandlers": {
"Main": {
"class": "MediaWiki\\Extension\\FacetedCategory\\Hooks\\Main",
"services": []
},
"RecursiveCategory": {
"class": "MediaWiki\\Extension\\FacetedCategory\\Hooks\\RecursiveCategory",
"services": ["DBLoadBalancer", "JobQueueGroup"]
}
},
"Hooks": {
"BeforePageDisplay": "Main",
"CategoryAfterPageAdded": "RecursiveCategory",
"ContentAlterParserOutput": "RecursiveCategory",
"MakeGlobalVariablesScript": "RecursiveCategory",
"OutputPageParserOutput": "RecursiveCategory",
"SpecialSearchResultsPrepend": "Main"
},
"SpecialPages": {
"FacetedCategories": "MediaWiki\\Extension\\FacetedCategory\\Special\\SpecialFacetedCategories",
"CategoryIntersectionSearch": "MediaWiki\\Extension\\FacetedCategory\\Special\\SpecialCategoryIntersectionSearch"
},
"ExtensionMessagesFiles": {
"FacetedCategoryAlias": "FacetedCategory.alias.php"
},
"TestAutoloadNamespaces": {
"MediaWiki\\Extension\\FacetedCategory\\Tests\\Unit\\": "tests/phpunit/unit/",
"MediaWiki\\Extension\\FacetedCategory\\Tests\\Integration\\": "tests/phpunit/integration/"
},
"manifest_version": 1
}