forked from plentymarkets/plugin-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
67 lines (67 loc) · 2.05 KB
/
config.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
[
{
"tab" : "Template",
"key" : "template.template_plugin_name",
"label" : "Namespace of the used template plugin",
"type" : "text",
"default" : "Ceres"
},
{
"tab" : "Number formats",
"key" : "format.number_decimals",
"label" : "Number of decimal places",
"type" : "text",
"default" : "2"
},
{
"tab" : "Number formats",
"key" : "format.separator_decimal",
"label" : "Decimal separator",
"type" : "text",
"default" : ","
},
{
"tab" : "Number formats",
"key" : "format.separator_thousands",
"label" : "Thousands separator",
"type" : "text",
"default" : "."
},
{
"tab" : "Number formats",
"key" : "format.use_locale_currency_format",
"label" : "Use customer specific price format",
"type" : "dropdown",
"possibleValues" : {
"1" : "YES",
"0" : "NO"
},
"default": "1"
},
{
"tab" : "Routing",
"key" : "routing.enabled_routes",
"label" : "Enable routes",
"type" : "multi_select",
"possibleValues" :
{
"home" : "/",
"basket" : "/basket",
"checkout" : "/checkout",
"my-account" : "/my-account",
"confirmation" : "/confirmation",
"guest" : "/guest",
"login" : "/login",
"register" : "/register",
"search" : "/search",
"place-order" : "/place-order & /execute-payment",
"cancellation-rights" : "/cancellation-rights",
"legal-disclosure" : "/legal-disclosure",
"privacy-policy" : "/privacy-policy",
"gtc" : "/gtc",
"item" : "Item routes",
"category" : "Category routes"
},
"default" : "all"
}
]