-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
89 lines (89 loc) · 2.23 KB
/
extension.json
File metadata and controls
89 lines (89 loc) · 2.23 KB
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
83
84
85
86
87
88
89
{
"name": "Contactus",
"version": "1.1.1",
"author": "[https://www.wikiskripta.eu/w/User:Josmart Josef Martiňák]",
"url": "https://bitbucket.org/wikiskripta/contactus",
"descriptionmsg": "contactus-desc",
"license-name": "MIT",
"type": "specialpage",
"status": "stable",
"requires": {
"MediaWiki": ">= 1.36.0"
},
"SpecialPages": {
"Contactus": "Contactus"
},
"MessagesDirs": {
"Contactus": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"ContactusMagic": "Contactus.i18n.magic.php"
},
"AutoloadClasses": {
"ContactusHooks": "ContactusHooks.php",
"Contactus": "Contactus_body.php"
},
"config": {
"ContactusFieldsSpecial": {
"value": ["photo", "degree", "email", "workplace", "projects", "note"],
"description": "Fields displayed at special page."
},
"ContactusFieldsCard": {
"value": ["degree", "email", "workplace", "projects", "photo"],
"description": "Fields displayed at visit card."
},
"ContactusFieldsTable": {
"value": ["degree", "email", "workplace", "projects", "photo"],
"description": "Fields displayed at the table view."
}
},
"ResourceModules": {
"ext.Contactus": {
"position": "top",
"styles": [
"ext.Contactus.css"
],
"scripts": [
"clipboard.min.js",
"noty/js/noty/packaged/jquery.noty.packaged.min.js",
"ext.Contactus.js"
],
"messages": [
"contactus-save",
"contactus-cancel",
"contactus-remove-confirm",
"contactus-removed",
"contactus-remove-project-confirm",
"contactus-removed-project",
"contactus-success",
"contactus-embed-copied",
"contactus-validation-error",
"contactus-project-validation-error",
"contactus-err-related-contacts",
"contactus-photo-help",
"contactus-name",
"contactus-surname",
"contactus-note",
"contactus-www",
"contactus-jobtitle",
"contactus-workplace",
"contactus-place",
"contactus-projects",
"contactus-isrecent",
"contactus-phone",
"contactus-tit"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "Contactus/resources"
},
"Hooks": {
"LoadExtensionSchemaUpdates": "ContactusHooks::ContactusUpdateSchema",
"ParserFirstCallInit": "ContactusHooks::efContactus_Setup"
},
"manifest_version": 2
}