forked from plentymarkets/plugin-ceres
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.json
executable file
·529 lines (529 loc) · 25.2 KB
/
plugin.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
{
"version" : "2.17.1",
"name" : "Ceres",
"marketplaceName" : {"de": "Ceres","en": "Ceres"},
"description" : "This is the official Ceres plugin developed by plentymarkets. Ceres is the default template plugin for plentymarkets 7 online stores.",
"author" : "plentymarkets GmbH",
"license" : "AGPL-3.0",
"pluginIcon" : "icon_plugin_xs.png",
"price" : 0.00,
"shortDescription" : {"de": "Das offizielle, von plentymarkets entwickelte Template-Plugin. Ceres ist das Standard-Template für plentymarkets 7 Webshops. ","en": "The official template plugin developed by plentymarkets. Ceres is the default template for plentymarkets 7 online stores."},
"authorIcon" : "icon_author_xs.png",
"email" : "[email protected]",
"phone" : "+49 561 98 681 100",
"categories" : ["3517"],
"keywords" : ["plentymarkets", "plugins", "layout", "template", "ceres"],
"type" : "template",
"require" : ["IO"],
"namespace" : "Ceres",
"serviceProvider" : "Ceres\\Providers\\TemplateServiceProvider",
"javaScriptFiles" : [],
"runOnBuild" : [
"Ceres\\Migrations\\WebshopSettingsMigration_0_0_1",
"Ceres\\Migrations\\ConfigPropertiesMigration_0_0_1",
"Ceres\\Migrations\\Migration_2018_07_06_001_RebuildShopBuilderHomepage"
],
"dataProviders" :
[
{
"key":"Ceres\\Containers\\CeresItemListContainer1",
"name":"First item list",
"description":"Display a configurable list of items in your online store"
},
{
"key":"Ceres\\Containers\\CeresItemListContainer2",
"name":"Second item list",
"description":"Display a configurable list of items in your online store"
},
{
"key":"Ceres\\Containers\\CeresItemListContainer3",
"name":"Third item list",
"description":"Display a configurable list of items in your online store"
}
],
"containers" :
[
{
"key" : "Template.Style",
"name" : "Template: Style",
"description" : "Add style to Ceres with a theme plugin."
},
{
"key" : "Template.StyleOverwrite",
"name" : "Template: Override style",
"description" : "Override the default CSS file of Ceres."
},
{
"key" : "Script.Loader",
"name" : "Script loader: Register/load JS",
"description" : "Register scripts, events and other JS related items."
},
{
"key" : "Script.AfterScriptsLoaded",
"name" : "Script loader: After scripts loaded",
"description" : "Load scripts, events and other JS related items, e.g. Vue components, after frameworks and scripts have been initialised."
},
{
"key" : "StaticPages.CancellationRights",
"name" : "Static Pages: Cancellation rights",
"description" : "Add additional content on the cancellation rights page."
},
{
"key" : "StaticPages.CancellationForm",
"name" : "Static Pages: Cancellation form",
"description" : "Add additional content on the cancellation form page."
},
{
"key" : "StaticPages.LegalDisclosure",
"name" : "Static Pages: Legal disclosure",
"description" : "Add additional content on the legal disclosure page."
},
{
"key" : "StaticPages.PrivacyPolicy",
"name" : "Static Pages: Privacy policy",
"description" : "Add additional content on the privacy policy page."
},
{
"key" : "StaticPages.TermsAndConditions",
"name" : "Static Pages: Terms and conditions",
"description" : "Add additional content on the terms and conditions page."
},
{
"key" : "StaticPages.PageNotFound",
"name" : "Static Pages: Page not found",
"description" : "Add additional content on the 404 page."
},
{
"key" : "Homepage",
"name" : "Override homepage",
"description" : "Override the complete homepage."
},
{
"key" : "Homepage.Container1",
"name" : "Homepage: Container 1",
"description" : "Replace the image slider of the homepage."
},
{
"key" : "Homepage.Container2",
"name" : "Homepage: Container 2",
"description" : "Replace the upper item preview of the homepage."
},
{
"key" : "Homepage.Container3",
"name" : "Homepage: Container 3",
"description" : "Replace the lower item preview of the homepage."
},
{
"key" : "Homepage.Container4",
"name" : "Homepage: Container 4",
"description" : "Replace the first category preview of the homepage."
},
{
"key" : "Homepage.Container5",
"name" : "Homepage: Container 5",
"description" : "Replace the second category preview of the homepage."
},
{
"key" : "Homepage.Container6",
"name" : "Homepage: Container 6",
"description" : "Replace the first list of items of the homepage."
},
{
"key" : "Homepage.Container7",
"name" : "Homepage: Container 7",
"description" : "Replace the third category preview of the homepage."
},
{
"key" : "Homepage.Container8",
"name" : "Homepage: Container 8",
"description" : "Replace the fourth category preview of the homepage."
},
{
"key" : "Homepage.Container9",
"name" : "Homepage: Container 9",
"description" : "Replace the second list of items of the homepage."
},
{
"key" : "Homepage.Container10",
"name" : "Homepage: Container 10",
"description" : "Add additional content on the homepage."
},
{
"key" : "Homepage.PaymentMethods",
"name" : "Homepage: Payment method container",
"description" : "Add a logo of the payment method to the payment methods on the homepage."
},
{
"key" : "Homepage.Shipping",
"name" : "Homepage: Shipping method container",
"description" : "Add a logo of the shipping method to the shipping methods on the homepage."
},
{
"key" : "Homepage.Certified",
"name" : "Homepage: Certified container",
"description" : "Add a \"Certified by\" logo to the container on the homepage."
},
{
"key" : "Header",
"name" : "Header: Override header",
"description" : "Override the complete header of all pages."
},
{
"key" : "Header.LeftSide",
"name" : "Header: Left header container",
"description" : "Add content to the container on the left in the header."
},
{
"key" : "Footer",
"name" : "Footer: Override footer",
"description" : "Override the complete footer of all pages."
},
{
"key" : "Footer.RowOne",
"name" : "Footer: Row 1 container",
"description" : "Add content to the first row of the footer."
},
{
"key" : "Footer.RowTwo",
"name" : "Footer: Row 2 container",
"description" : "Add content to the second row of the footer."
},
{
"key" : "Footer.RowThree",
"name" : "Footer: Row 3 container",
"description" : "Add content to the third row of the footer."
},
{
"key" : "SingleItem.BeforePrice",
"name" : "Single item: Before price",
"description" : "Add content before the item price in the single item view."
},
{
"key" : "SingleItem.AfterPrice",
"name" : "Single item: After price",
"description" : "Add content after the item price in the single item view."
},
{
"key" : "SingleItem.BeforeAddToBasket",
"name" : "Single item: Before \"Add to shopping cart\" button",
"description" : "Add content before the 'Add to shopping cart' button in the single item view."
},
{
"key" : "SingleItem.AfterAddToBasket",
"name" : "Single item: After \"Add to shopping cart\" button",
"description" : "Add content after the 'Add to shopping cart' button in the single item view."
},
{
"key" : "SingleItem.AdditionalContentAfterAddToBasket",
"name" : "Single item: Additional content after \"Add to shopping cart\" button",
"description" : "Add additional content after the 'Add to shopping cart' button in the single item view."
},
{
"key" : "SingleItem.AdditionalContentAfterVAT",
"name" : "Single item: Additional content after \"VAT\" information",
"description" : "Add additional content after the 'VAT' information in the single item view."
},
{
"key" : "SingleItem.AddDetailTabs",
"name" : "Single item: Add detail tabs",
"description" : "Add additional tabs to the tab menu in the single item view."
},
{
"key" : "SingleItem.AddDetailTabsContent",
"name" : "Single item: Add content to detail tabs",
"description" : "Add content to the detail tabs in the single item view."
},
{
"key" : "SingleItem.ItemListContainer",
"name" : "Single item: Container for item lists",
"description" : "Add item lists in the single item view."
},
{
"key" : "SingleItem.FeedbackContainer",
"name" : "Single item: Container for customer feedback",
"description" : "Add customer feedback in the single item view."
},
{
"key" : "SingleItem.ImageCarousel",
"name" : "Single item: Override image carousel",
"description" : "Override the image carousel on the single item."
},
{
"key" : "BasketTotals.BeforeItemSum",
"name" : "Shopping cart: Before \"Value of items\"",
"description" : "Add content before the value of items in the Total column of the shopping cart."
},
{
"key" : "BasketTotals.AfterItemSum",
"name" : "Shopping cart: After \"Value of items\"",
"description" : "Add content after the value of items in the Total column of the shopping cart."
},
{
"key" : "BasketTotals.BeforeShippingCosts",
"name" : "Shopping cart: Before \"Shipping\"",
"description" : "Add content before the shipping costs in the Total column of the shopping cart."
},
{
"key" : "BasketTotals.AfterShippingCosts",
"name" : "Shopping cart: After \"Shipping\"",
"description" : "Add content after the shipping costs in the Total column of the shopping cart."
},
{
"key" : "BasketTotals.BeforeVat",
"name" : "Shopping cart: Before \"VAT\"",
"description" : "Add content before the VAT in the Total column of the shopping cart."
},
{
"key" : "BasketTotals.AfterVat",
"name" : "Shopping cart: After \"VAT\"",
"description" : "Add content after the VAT in the Total column of the shopping cart."
},
{
"key" : "BasketTotals.BeforeTotalSum",
"name" : "Shopping cart: Before \"Total\"",
"description" : "Add content before the total sum in the Total column of the shopping cart."
},
{
"key" : "BasketTotals.AfterTotalSum",
"name" : "Shopping cart: After \"Total\"",
"description" : "Add content before the total sum in the Total column of the shopping cart."
},
{
"key" : "BasketList.BeforeItem",
"name" : "Shopping cart items list: Before item",
"description" : "Add content before the item in the Items list of the shopping cart."
},
{
"key" : "BasketList.AfterItem",
"name" : "Shopping cart items list: After item",
"description" : "Add content after the item in the Items list of the shopping cart."
},
{
"key" : "Basket.BeforeCoupon",
"name" : "Shopping cart: Before the coupon input",
"description" : "Add content before the Coupon input field in the shopping cart."
},
{
"key" : "Basket.BeforeCheckoutButton",
"name" : "Shopping cart: Before \"Checkout\" button",
"description" : "Add content before the 'Checkout' button in the shopping cart."
},
{
"key" : "Basket.AfterCheckoutButton",
"name" : "Shopping cart: After \"Checkout\" button",
"description" : "Add content after the 'Checkout' button in the shopping cart."
},
{
"key" : "Basket.ExtendOverlayButtons",
"name" : "Shopping cart overlay: Extend buttons",
"description" : "Add additional content to the 'add to basket overlay' buttons."
},
{
"key" : "BasketPreview.BeforeCheckoutButton",
"name" : "Shopping cart preview: Before \"Checkout\" button",
"description" : "Add content before the 'Checkout' button in the shopping cart preview."
},
{
"key" : "BasketPreview.AfterCheckoutButton",
"name" : "Shopping cart preview: After \"Checkout\" button",
"description" : "Add content after the 'Checkout' button in the shopping cart preview."
},
{
"key" : "Checkout",
"name" : "Checkout: Override checkout",
"description" : "Override the complete checkout page.",
"multiple" : false
},
{
"key" : "Checkout.AddressLists",
"name" : "Checkout: Override address controls",
"description" : "Override the invoice and delivery address controls in the checkout.",
"multiple" : false
},
{
"key" : "Checkout.BillingAddress",
"name" : "Checkout: Override invoice address control",
"description" : "Override the invoice address control in the checkout. The containers 'Before invoice address' and 'After invoice address' will also be overridden.",
"multiple" : false
},
{
"key" : "Checkout.BeforeBillingAddress",
"name" : "Checkout: Before invoice address",
"description" : "Add content before the invoice address control in the checkout."
},
{
"key" : "Checkout.AfterBillingAddress",
"name" : "Checkout: After invoice address",
"description" : "Add content after the invoice address control in the checkout."
},
{
"key" : "Checkout.ShippingAddress",
"name" : "Checkout: Override shipping address control",
"description" : "Override the shipping address control in the checkout. The containers 'Before shipping address' and 'After shipping address' will also be overridden.",
"multiple" : false
},
{
"key" : "Checkout.BeforeShippingAddress",
"name" : "Checkout: Before shipping address",
"description" : "Add content before the shipping address control in the checkout."
},
{
"key" : "Checkout.AfterShippingAddress",
"name" : "Checkout: After shipping address",
"description" : "Add content after the shipping address control in the checkout."
},
{
"key" : "Checkout.ShippingProfileList",
"name" : "Checkout: Override shipping method",
"description" : "Override the list of shipping methods in the checkout. The containers 'Before shipping method' and 'After shipping method' will also be overridden."
},
{
"key" : "Checkout.BeforeShippingProfileList",
"name" : "Checkout: Before shipping method",
"description" : "Add content before the list of shipping methods in the checkout."
},
{
"key" : "Checkout.AfterShippingProfileList",
"name" : "Checkout: After shipping method",
"description" : "Add content after the list of shipping methods in the checkout."
},
{
"key" : "Checkout.PaymentList",
"name" : "Checkout: Override payment method",
"description" : "Override the list of payment methods in the checkout. The containers 'Before payment method' and 'After payment method' will also be overridden."
},
{
"key" : "Checkout.BeforePaymentList",
"name" : "Checkout: Before payment method",
"description" : "Add content before the list of payment methods in the checkout."
},
{
"key" : "Checkout.AfterPaymentList",
"name" : "Checkout: After payment method",
"description" : "Add content after the list of payment methods in the checkout."
},
{
"key" : "Checkout.OptIns",
"name" : "Checkout: Opt-ins",
"description" : "Add content to opt-in checkboxes in the checkout."
},
{
"key" : "Checkout.BeforeBasketTotals",
"name" : "Checkout: Before basket totals",
"description" : "Add content before the basket totals in the checkout."
},
{
"key" : "Checkout.AfterBasketTotals",
"name" : "Checkout: After basket totals",
"description" : "Add content after the basket totals in the checkout."
},
{
"key" : "Checkout.PlaceOrder",
"name" : "Checkout: Override \"Order now\" button",
"description" : "Override the 'Order now' button in the checkout. The containers 'Before Order now button' and 'After Order now button' will also be overridden."
},
{
"key" : "Checkout.BeforePlaceOrder",
"name" : "Checkout: Before \"Order now\" button",
"description" : "Add content before the 'Order now' button in the checkout."
},
{
"key" : "Checkout.AfterPlaceOrder",
"name" : "Checkout: After \"Order now\" button",
"description" : "Add content after the 'Order now' button in the checkout."
},
{
"key" : "Checkout.CustomAddressField",
"name" : "Checkout: Address field container",
"description" : "Add content, e.g. one or multiple custom address fields, at the bottom of the address form."
},
{
"key" : "OrderConfirmation.Override",
"name" : "Order confirmation: Override order confirmation",
"description" : "Override the complete order confirmation page.",
"multiple" : false
},
{
"key" : "OrderConfirmation.BeforeOrderDetails",
"name" : "Order confirmation: Before order details",
"description" : "Add content before the order details on the order confirmation page.",
"multiple" : false
},
{
"key" : "OrderConfirmation.AdditionalShippingInformation",
"name" : "Order confirmation: Additional shipping information",
"description" : "Add additional shipping information to the order details on the order confirmation page."
},
{
"key" : "OrderConfirmation.AdditionalPaymentInformation",
"name" : "Order confirmation: Additional payment information",
"description" : "Add additional payment information on the order confirmation page."
},
{
"key" : "OrderConfirmation.GrossNetReplace",
"name" : "Order confirmation: Override gross/net prices",
"description" : "Override the gross/net prices on the order confirmation page.",
"multiple" : false
},
{
"key" : "OrderConfirmation.AddContentAfterConfirmationThanks",
"name" : "Order confirmation: Additional content after order confirmation thank you message",
"description" : "Additional content after confirmation message on the order confirmation page."
},
{
"key" : "OrderConfirmation.AfterTotals",
"name" : "Order confirmation: Add content after totals",
"description" : "Add content after totals on the order confirmation page."
},
{
"key" : "OrderConfirmation.AddContentAfterOrderDetailsRow",
"name" : "Order confirmation: Add content before 'Back to Homepage' link",
"description" : "Add content before the 'Back to Homepage' link"
},
{
"key" : "MyAccount.OrderHistoryPaymentInformation",
"name" : "My account: Additional payment information",
"description" : "Add additional payment information after the order information on the My account page."
},
{
"key" : "MyAccount.OrderReturnHistoryItem",
"name" : "My account: Additional order return information",
"description" : "Add additional information after the order return details."
},
{
"key" : "CategoryItem.BeforePrices",
"name" : "Category item list: Before prices container",
"description" : "Add content before the prices in the category item view."
},
{
"key" : "CategoryItem.AfterPrices",
"name" : "Category item list: After prices container",
"description" : "Add content after the prices in the category item view."
},
{
"key" : "CategoryItem.SideNavBarBottom",
"name" : "Category item list: Container below side navigation",
"description" : "Add content below the side navigation bar in the category item view."
},
{
"key" : "Login.AdditionalContentAfterButtons",
"name" : "Login: Container below the buttons",
"description" : "Add content below the buttons in the login view."
},
{
"key" : "LoginOverlay.ExtendOverlayButtons",
"name" : "Login overlay: Container in a row with the buttons",
"description" : "Add content in the login overlay."
},
{
"key" : "RegistrationOverlay.ExtendOverlayButtons",
"name" : "Registration overlay: Container in a row with the buttons",
"description" : "Add content in the registration overlay."
},
{
"key" : "Search.Filter",
"name" : "Search: Override search filters",
"description" : "Override search filters in item lists and search results."
}
]
}