-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
82 lines (82 loc) · 1.97 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
{
"name": "SiteMatrix",
"version": "1.6.0",
"author": [
"Tim Starling",
"Brion Vibber",
"Victor Vasiliev",
"Alexandre Emsenhuber",
"Sam Reed"
],
"url": "https://www.mediawiki.org/wiki/Extension:SiteMatrix",
"descriptionmsg": "sitematrix-desc",
"license-name": "GPL-2.0-or-later",
"type": "specialpage",
"requires": {
"MediaWiki": ">= 1.43"
},
"SpecialPages": {
"SiteMatrix": {
"class": "MediaWiki\\Extension\\SiteMatrix\\SpecialSiteMatrix",
"services": [
"LanguageNameUtils"
]
}
},
"APIModules": {
"sitematrix": {
"class": "MediaWiki\\Extension\\SiteMatrix\\ApiSiteMatrix",
"services": [
"LanguageNameUtils",
"LanguageFactory"
]
}
},
"MessagesDirs": {
"SiteMatrix": [
"i18n",
"i18n/api"
]
},
"ExtensionMessagesFiles": {
"SiteMatrixAlias": "SiteMatrix.alias.php",
"SiteMatrixMagic": "SiteMatrix.i18n.magic.php"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\SiteMatrix\\": "includes/"
},
"Hooks": {
"APIQuerySiteInfoGeneralInfo": "main",
"ParserGetVariableValueSwitch": "main",
"MagicWordwgVariableIDs": "main"
},
"HookHandlers": {
"main": {
"class": "MediaWiki\\Extension\\SiteMatrix\\Hooks"
}
},
"config": {
"SiteMatrixFile": {
"description": "A file with the list of language codes used by the wikifarm (one per line).",
"value": null
},
"SiteMatrixSites": {
"description": "Configuration for project families (projects which are multilingual but each language is a separate wiki), in a <family> => [ 'name' => <human-readable name>, 'host' => <domain name>, 'prefix' => <interwiki prefix> ] format.",
"value": {},
"merge_strategy": "array_plus_2d"
},
"SiteMatrixPrivateSites": {
"description": "dbname list of private wikis.",
"value": null
},
"SiteMatrixFishbowlSites": {
"description": "dbname list of fishbowl wikis.",
"value": null
},
"SiteMatrixClosedSites": {
"description": "dbname list of closed wikis.",
"value": null
}
},
"manifest_version": 2
}