-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
executable file
·158 lines (150 loc) · 4.44 KB
/
metadata.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
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
<?php
$sMetadataVersion = '2.0';
$aModule = array(
'id' => 'rs-sitemap',
'title' => '*RS Sitemap',
'description' => '',
'thumbnail' => '',
'version' => '1.0.0',
'author' => '',
'url' => '',
'email' => '',
'controllers' => array(
'rs_sitemap_generator' => \rs\sitemap\Application\Controller\Admin\rs_sitemap_generator::class,
),
'extend' => array(
),
'templates' => array(
'rs_sitemap_generator.tpl' => 'rs/sitemap/views/admin/tpl/rs_sitemap_generator.tpl',
),
'blocks' => array(
),
'settings' => array(
array(
'group' => 'rs-sitemap_main',
'name' => 'rs-sitemap_main_language',
'type' => 'str',
'value' => '0|1',
),
array(
'group' => 'rs-sitemap_shop',
'name' => 'rs-sitemap_shop_enable',
'type' => 'bool',
'value' => true,
),
array(
'group' => 'rs-sitemap_shop',
'name' => 'rs-sitemap_shop_frequence',
'type' => 'str',
'value' => 'weekly',
),
array(
'group' => 'rs-sitemap_shop',
'name' => 'rs-sitemap_shop_prio',
'type' => 'str',
'value' => '0.8',
),
array(
'group' => 'rs-sitemap_category',
'name' => 'rs-sitemap_category_enable',
'type' => 'bool',
'value' => true,
),
array(
'group' => 'rs-sitemap_category',
'name' => 'rs-sitemap_category_frequence',
'type' => 'str',
'value' => 'monthly',
),
array(
'group' => 'rs-sitemap_category',
'name' => 'rs-sitemap_category_prio',
'type' => 'str',
'value' => '0.3',
),
array(
'group' => 'rs-sitemap_category',
'name' => 'rs-sitemap_category_pic',
'type' => 'bool',
'value' => true,
),
array(
'group' => 'rs-sitemap_manufacturer',
'name' => 'rs-sitemap_manufacturer_enable',
'type' => 'bool',
'value' => true,
),
array(
'group' => 'rs-sitemap_manufacturer',
'name' => 'rs-sitemap_manufacturer_frequence',
'type' => 'str',
'value' => 'monthly',
),
array(
'group' => 'rs-sitemap_manufacturer',
'name' => 'rs-sitemap_manufacturer_prio',
'type' => 'str',
'value' => '0.3',
),
array(
'group' => 'rs-sitemap_manufacturer',
'name' => 'rs-sitemap_manufacturer_pic',
'type' => 'bool',
'value' => true,
),
array(
'group' => 'rs-sitemap_content',
'name' => 'rs-sitemap_content_enable',
'type' => 'bool',
'value' => true,
),
array(
'group' => 'rs-sitemap_content',
'name' => 'rs-sitemap_content_frequence',
'type' => 'str',
'value' => 'monthly',
),
array(
'group' => 'rs-sitemap_content',
'name' => 'rs-sitemap_content_prio',
'type' => 'str',
'value' => '0.3',
),
array(
'group' => 'rs-sitemap_article',
'name' => 'rs-sitemap_article_enable',
'type' => 'bool',
'value' => true,
),
array(
'group' => 'rs-sitemap_article',
'name' => 'rs-sitemap_article_frequence',
'type' => 'str',
'value' => 'weekly',
),
array(
'group' => 'rs-sitemap_article',
'name' => 'rs-sitemap_article_prio',
'type' => 'str',
'value' => '0.8',
),
array(
'group' => 'rs-sitemap_article',
'name' => 'rs-sitemap_article_pic',
'type' => 'bool',
'value' => true,
),
array(
'group' => 'rs-sitemap_article',
'name' => 'rs-sitemap_article_variants',
'type' => 'bool',
'value' => false,
),
array(
'group' => 'rs-sitemap_article',
'name' => 'rs-sitemap_article_stock',
'type' => 'bool',
'value' => false,
),
),
);