-
Notifications
You must be signed in to change notification settings - Fork 2
/
extension.json
61 lines (61 loc) · 1.8 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
{
"name": "Attachments",
"type": "other",
"license-name": "MIT",
"author": "Gittenburg",
"url": "https://www.mediawiki.org/wiki/Extension:Attachments",
"version": "0.1.0",
"descriptionmsg": "attachments-desc",
"config": {
"AttachmentsNamespaces": {
"_merge_strategy": "array_plus"
},
"AttachmentsChunkListByLetter": true,
"AttachmentsShowSubpageForm": true,
"AttachmentsShowLinkForm": true
},
"AutoloadClasses": {
"Attachments": "includes/Attachments.php",
"AttachmentsHooks": "includes/AttachmentsHooks.php",
"AttachAction": "includes/AttachAction.php"
},
"ExtensionMessagesFiles": {
"AttachmentsMagic": "includes/Attachments.i18n.php"
},
"Hooks": {
"ParserFirstCallInit": "AttachmentsHooks::onParserFirstCallInit",
"BeforePageDisplay": "AttachmentsHooks::onBeforePageDisplay",
"MagicWordwgVariableIDs": "AttachmentsHooks::onMagicWordwgVariableIDs",
"ParserGetVariableValueSwitch": "AttachmentsHooks::onParserGetVariableValueSwitch",
"SkinTemplateNavigation": "AttachmentsHooks::onSkinTemplateNavigation",
"MinervaPreRender": "AttachmentsHooks::onMinervaPreRender",
"ListDefinedTags": "AttachmentsHooks::onListDefinedTags",
"ChangeTagsListActive": "AttachmentsHooks::onListDefinedTags"
},
"Actions": {
"attach": "AttachAction"
},
"MessagesDirs" : {
"Attachments": ["i18n"]
},
"TrackingCategories": [
"attachments-category-attached-files",
"attachments-category-exturl-error"
],
"ResourceModules": {
"ext.attachments.minerva-icon": {
"class": "ResourceLoaderImageModule",
"selector": ".mw-ui-icon-minerva-{name}:before",
"useDataURI": false,
"images": {
"attachments": "resources/folder.svg",
"attach": "resources/file-plus.svg"
}
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteSkinPath": "Attachments"
},
"manifest_version": 1
}