forked from redekopmark/RatingBar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
86 lines (86 loc) · 2.31 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"$schema": "https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/core/+/HEAD/docs/extension.schema.v2.json?format=JSON",
"name": "W4G Rating Bar",
"version": "2.3.0",
"author": [
"[http://www.patheticcockroach.com David Dernoncourt]",
"[http://www.francky.me Franck Dernoncourt]",
"[https://www.aiowiki.com/User:Reddo Reddo]",
"[https://matthewbird.ca Matthew Bird]"
],
"url": "http://www.wiki4games.com/Wiki4Games:W4G_Rating_Bar",
"descriptionmsg": "w4g_rb-desc",
"license-name": "CC-BY-SA-4.0",
"type": "parserhook",
"AutoloadClasses": {
"W4GRB": "includes/W4GRB.php",
"W4GRBPage": "includes/W4GRBPage.php",
"W4G": "includes/W4G.php"
},
"requires": {
"MediaWiki": ">= 1.34.0",
"platform": {
"php": ">= 8.0"
}
},
"GroupPermissions": {
"*": {
"w4g_rb-canvote": false
},
"user": {
"w4g_rb-canvote": true
},
"autoconfirmed": {
"w4g_rb-canvote": true
},
"bot": {
"w4g_rb-canvote": false
},
"sysop": {
"w4g_rb-canvote": true
},
"bureaucrat": {
"w4g_rb-canvote": true
}
},
"config": {
"W4GRB_Path": {
"value": "/extensions/RatingBar",
"path": false,
"description": "",
"descriptionmsg": "",
"public": true
},
"W4GRB_Settings": {
"value": {
"ajax-fresh-data": true,
"allow-unoptimized-queries": true,
"anonymous-voting-enabled": false,
"auto-include": false,
"default-items-per-list": 10,
"fix-spaces": true,
"max-bars-per-page": 2,
"max-items-per-list": 100,
"max-lists-per-page": 10,
"multivote-cooldown": 604800,
"category-cache-time": 604800,
"show-mismatching-bar": true,
"show-voter-names": false
},
"path": false,
"description": "",
"descriptionmsg": "",
"public": true
},
"ExtensionAliasesFiles": {
"value": {
"w4g_rb": "/extensions/RatingBar/W4GRB.alias.php"
},
"path": false,
"description": "",
"descriptionmsg": "",
"public": true
}
},
"manifest_version": 2
}