This repository was archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
98 lines (98 loc) · 2.54 KB
/
extension.json
File metadata and controls
98 lines (98 loc) · 2.54 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
90
91
92
93
94
95
96
97
98
{
"name": "CookieConsent",
"type": "other",
"version": "0.1.0",
"author": [
"Marijn van Wezel ([https://wikibase-solutions.com Wikibase Solutions])"
],
"url": "https://www.mediawiki.org/wiki/Extension:CookieConsent",
"descriptionmsg": "cookieconsent-desc",
"license-name": "GPL-2.0-or-later",
"requires": {
"MediaWiki": ">= 1.39.0",
"platform": {
"php": ">= 7.4.3"
}
},
"MessagesDirs": {
"CookieConsent": [
"i18n"
]
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\CookieConsent\\": "src/"
},
"config": {
"CookieConsentCategories": {
"value": {
"preference": {
"namemsg": "cookieconsent-category-name-preference",
"descriptionmsg": "cookieconsent-category-desc-preference"
},
"statistics": {
"namemsg": "cookieconsent-category-name-statistics",
"descriptionmsg": "cookieconsent-category-desc-statistics"
},
"marketing": {
"namemsg": "cookieconsent-category-name-marketing",
"descriptionmsg": "cookieconsent-category-desc-marketing"
}
},
"merge_strategy": "provide_default"
}
},
"HookHandlers": {
"main": {
"class": "MediaWiki\\Extension\\CookieConsent\\Hooks"
}
},
"Hooks": {
"BeforePageDisplay": "main",
"ResourceLoaderGetConfigVars": "main",
"SkinAddFooterLinks": "main"
},
"ResourceModules": {
"ext.CookieConsent": {
"localBasePath": "resources/ext.CookieConsent",
"remoteExtPath": "CookieConsent/resources/ext.CookieConsent",
"scripts": [
"ext.CookieConsent.js",
"ext.CookieConsent.init.js"
],
"styles": [
"ext.CookieConsent.css"
],
"messages": [
"cancel",
"cookieconsent-detailed-dialog-title",
"cookieconsent-simple-dialog-title",
"cookieconsent-manage-preferences",
"cookieconsent-manage-preferences-short",
"cookieconsent-save-preferences",
"cookieconsent-accept-all",
"cookieconsent-category-name-strictly-necessary",
"cookieconsent-category-name-preference",
"cookieconsent-category-name-statistics",
"cookieconsent-category-name-marketing",
"cookieconsent-category-desc-strictly-necessary",
"cookieconsent-category-desc-preference",
"cookieconsent-category-desc-statistics",
"cookieconsent-category-desc-marketing",
"cookieconsent-detailed-dialog-intro",
"cookieconsent-detailed-dialog-outro",
"cookieconsent-simple-dialog-content"
],
"dependencies": [
"mediawiki.cookie",
"oojs-ui-core",
"oojs-ui-widgets",
"oojs-ui-windows"
]
}
},
"ServiceWiringFiles": [
"src/CookieConsent.wiring.php"
],
"load_composer_autoloader": true,
"manifest_version": 2
}