-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.php
103 lines (100 loc) · 3.69 KB
/
config.php
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
<?php
/*
* @copyright Copyright (c) 2016, Net Inventors GmbH
* @category Shopware
* @author Net Inventors GmbH
*
*/
return [
'redmine' => [
'projectID' => '000000-012-447',
'contact' => '[email protected]',
],
'attributes' => [
[
'table' => 's_filter_options_attributes',
'prefix' => 'neti_tool_kit',
'suffix' => 'hide_in_frontend',
'type' => 'boolean',
'data' => [
'label' => [
'de_DE' => 'Im Frontend verstecken',
'en_GB' => 'Hide in frontend',
],
'displayInBackend' => true,
],
],
[
'table' => 's_filter_values_attributes',
'prefix' => 'neti_tool_kit',
'suffix' => 'hide_in_frontend',
'type' => 'boolean',
'data' => [
'label' => [
'de_DE' => 'Im Frontend verstecken',
'en_GB' => 'Hide in frontend',
],
'displayInBackend' => true,
],
],
],
'form' => [
[
'type' => 'select',
'name' => 'showPropertiesOn',
'label' => [
'de_DE' => 'Artikeleigenschaften an folgenden Stellen zu Verfügung stellen',
'en_GB' => 'Add product properties in the following places',
],
'description' => [
'de_DE' => 'Fügt dem sArticle-Array die Property-Sets hinzu, wie sie auf der Detailseite verfügbar sind.',
'en_GB' => 'Adds the Property sets to the sArticle array in the frontend listing, the same way they are available on the Detail page.',
],
'value' => ['listing'],
'scope' => \Shopware\Models\Config\Element::SCOPE_SHOP,
'isRequired' => false,
'store' => [
['listing', ['de_DE' => 'Kategorieseite', 'en_GB' => 'Category page']],
['similarArticles', ['de_DE' => 'Ähnliche Artikel / Zubehör', 'en_GB' => 'Similar / similar articles']],
['bought', ['de_DE' => 'Kunden kauften auch', 'en_GB' => 'Bought articles']],
['topSeller', ['de_DE' => 'TopSeller', 'en_GB' => 'TopSellers']],
['search', ['de_DE' => 'Artikelsuche', 'en_GB' => 'Article Search']],
[
'emotionArticleSlider',
['de_DE' => 'Artikel-Slider-Einkaufsweltelement', 'en_GB' => 'Article slider emotion component'],
],
[
'productStreamArticleSlider',
['de_DE' => 'Product-Streams auf Artikelseite', 'en_GB' => 'Article page product streams'],
],
],
'options' => [
'multiSelect' => true,
'editable' => false,
'forceSelection' => false,
],
],
[
'boolean',
'globalUserData',
[
'de_DE' => '$netiUserData global bereitstellen',
'en_GB' => 'provide $netiUserData globally',
],
[],
true,
Shopware\Models\Config\Element::SCOPE_SHOP,
],
[
'boolean',
'globalUserAttributeData',
[
'de_DE' => '$netiUserData global mit attributes bereitstellen',
'en_GB' => 'provide $netiUserData with attributes globally',
],
[],
false,
Shopware\Models\Config\Element::SCOPE_SHOP,
],
],
];