-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
executable file
·54 lines (53 loc) · 1.8 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
<?php
$sMetadataVersion = '2.0';
$aModule = array(
'id' => 'rs-productlistslider',
'title' => '*RS Product list slider',
'description' => 'Replace product list with swiper',
'thumbnail' => '',
'version' => '0.0.1',
'author' => '',
'url' => '',
'email' => '',
'extend' => array(
\OxidEsales\Eshop\Application\Controller\StartController::class => \rs\productlistslider\Application\Controller\StartController::class,
),
'controllers' => array(
),
'templates' => array(
'rs/productlistslider/views/tpl/widget/product/list.tpl' => 'rs/productlistslider/views/tpl/widget/product/list.tpl',
),
'blocks' => array(
array(
'template' => 'widget/product/list.tpl',
'block' => 'rs_productlistslider',
'file' => '/views/block/widget/product/list__rs_productlistslider.tpl',
),
),
'settings' => array(
array(
'group' => 'rs-productslider_settings',
'name' => 'rs-productslider_settings_navigation_button',
'type' => 'bool',
'value' => true,
),
array(
'group' => 'rs-productslider_settings',
'name' => 'rs-productslider_settings_navigation_pagination',
'type' => 'bool',
'value' => false,
),
array(
'group' => 'rs-productslider_settings',
'name' => 'rs-productslider_settings_navigation_scrollbar',
'type' => 'bool',
'value' => false,
),
array(
'group' => 'rs-productslider_settings',
'name' => 'rs-productslider_settings_infinity_loop',
'type' => 'bool',
'value' => true,
),
),
);