-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
executable file
·68 lines (66 loc) · 2.28 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
<?php
$sMetadataVersion = '2.0';
$aModule = array(
'id' => 'rs-navigationbar',
'title' => '*RS Navigation bar',
'description' => '',
'thumbnail' => '',
'version' => '1.0.0',
'author' => '',
'url' => '',
'email' => '',
'extend' => array(
\OxidEsales\Eshop\Application\Model\Category::class => rs\navigationbar\Application\Model\Category::class,
),
'templates' => array(
'rs/navigationbar/views/tpl/widget/header/categorylist.tpl' => 'rs/navigationbar/views/tpl/widget/header/categorylist.tpl',
),
'blocks' => array(
array(
'template' => 'widget/header/categorylist.tpl',
'block' => 'dd_widget_header_categorylist',
'file' => '/views/block/widget/header/categorylist__dd_widget_header_categorylist.tpl',
),
array(
'template' => 'layout/page.tpl',
'block' => 'layout_header',
'file' => '/views/block/layout/page__layout_header.tpl',
),
),
'settings' => array(
array(
'group' => 'rs-navigationbar_main',
'name' => 'rs-navigationbar_main__display_homelink',
'type' => 'bool',
'value' => true
),
array(
'group' => 'rs-navigationbar_main',
'name' => 'rs-navigationbar_main__standard_sub_column_count_large',
'type' => 'select',
'value' => '4',
'position' => 2,
'constraints' => '2|3|4|6'
),
array(
'group' => 'rs-navigationbar_main',
'name' => 'rs-navigationbar_main__standard_sub_column_count_medium',
'type' => 'select',
'value' => '3',
'position' => 1,
'constraints' => '2|3|4|6'
),
array(
'group' => 'rs-navigationbar_main',
'name' => 'rs-navigationbar_main__theme',
'type' => 'str',
'value' => 'oxid-6-wave',
),
array(
'group' => 'rs-navigationbar_main',
'name' => 'rs-navigationbar_main__display_snippet_id_in_the_shop',
'type' => 'bool',
'value' => false,
),
)
);