-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
72 lines (72 loc) · 1.41 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
{
"name": "ArticleType",
"version": "2.0.0",
"author": "Dror S. [FFS] ([http://www.kolzchut.org.il Kol-Zchut])",
"url": "https://github.com/kolzchut/mediawiki-extensions-WRArticleType",
"descriptionmsg": "articletype-desc",
"license-name": "GPL-2.0-or-later",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.35.0"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\ArticleType\\": "includes/"
},
"AutoloadClasses": {
"WRArticleType": "includes/ArticleType.php"
},
"MessagesDirs": {
"ArticleType": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"ArticleTypeMagic": "ArticleType.i18n.magic.php"
},
"Hooks": {
"ParserFirstCallInit": "handleHooks",
"MakeGlobalVariablesScript": "handleHooks",
"OutputPageParserOutput": "handleHooks",
"OutputPageBodyAttributes": "handleHooks"
},
"HookHandlers": {
"handleHooks": {
"class": "MediaWiki\\Extension\\ArticleType\\Hooks"
}
},
"config": {
"ArticleTypeConfig": {
"value": {
"types": [
"event",
"faq",
"government",
"guide",
"health",
"landingpage",
"law",
"letter",
"mainpage",
"newsletter",
"organization",
"portal",
"portal-subpage",
"proceeding",
"right",
"ruling",
"service",
"term",
"user"
],
"noTitleText": [
"guide",
"landingpage",
"portal",
"unknown",
"user"
]
}
}
},
"manifest_version": 2
}