-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.php
31 lines (29 loc) · 1.02 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
<?php
$sMetadataVersion = '2.1';
$aModule = [
'id' => 'oe_mmtest',
'title' => 'Test metadata controllers feature',
'description' => '',
'thumbnail' => 'picture.png',
'version' => '2.1',
'author' => 'OXID eSales AG',
// 'controllers' => [
// 'myvendor_mytestmodule_MyModuleController' => MyVendor\mytestmodule\MyModuleController::class,
// 'myvendor_mytestmodule_MyOtherModuleController' => MyVendor\mytestmodule\MyOtherModuleController::class,
// ],
'blocks' => [
[
//'theme' => 'flow',
'template' => 'page/details/inc/productmain.tpl',
'block' => 'details_productmain_title',
'file' => '/views/blocks/productmain.tpl'
],
]
// 'templates' => [
// 'mytestmodule.tpl' => 'mytestmodule/mytestmodule.tpl',
// 'mytestmodule_other.tpl' => 'mytestmodule/test_module_controller_routing_other.tpl'
// ],
// 'smartyPluginDirectories' => [
// 'Smarty/PluginDirectory'
// ],
];