forked from EtiennePerot/mediawiki-langutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
35 lines (35 loc) · 1017 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
{
"name": "LangUtils",
"author": [
"seb26",
"WindPower"
],
"url": "https://github.com/ThePortalWiki/LangUtils",
"descriptionmsg": "langutils-desc",
"version": "1.0.0",
"license-name": "Apache-2.0",
"type": "other",
"requires": {
"MediaWiki": ">= 1.27.0"
},
"Hooks": {
"ParserFirstCallInit": "ExtLangUtils::onParserFirstCallInit",
"ParserGetVariableValueSwitch": "ExtLangUtils::getVariableValue",
"GetMagicVariableIDs": "ExtLangUtils::MagicWordwgVariableIDs",
"SkinBuildSidebar": "ExtLangUtils::skinAddSidebar",
"OutputPageBodyAttributes": "ExtLangUtils::skinAddBodyClass",
"PageContentLanguage": "ExtLangUtils::changePageLang"
},
"AutoloadClasses": {
"ExtLangUtils": "LangUtils.php"
},
"MessagesDirs": {
"LangUtils": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"LangUtilsMagic": "LangUtils.i18n.php"
},
"manifest_version": 2
}