-
Notifications
You must be signed in to change notification settings - Fork 10
/
metadata.php
31 lines (29 loc) · 1.13 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
/**
* Changelog:
* 13.04.2013 - Josef A. Puckl | eComStyle.de - Moved all files to modules-folder
* 17.10.2014 - Josef A. Puckl | eComStyle.de - Compatibility to 4.9
* 14.03.2018 - Josef A. Puckl | eComStyle.de - Version 4 OXID eShop 6
* 23.09.2019 - Josef A. Puckl | eComStyle.de - Moduleinstellung: Bestellordner nicht auswerten.
*/
$sMetadataVersion = '2.1';
$aModule = [
'id' => 'hdiReport',
'title' => 'HDI Report',
'description' => 'Module for sale statistics.',
'version' => '2.0.5',
'author' => 'Rafael Dabrowski | HEINER DIRECT GmbH & Co KG',
'url' => 'http://www.heiner-direct.com',
'email' => '[email protected]',
'extend' => [
],
'controllers' => [
'hdi_report' => \OxidCommunity\hdiReport\Controller\Admin\hdiReport::class,
],
'templates' => [
'hdireport_main.tpl' => 'oxcom/hdiReport/views/admin/tpl/hdireport_main.tpl',
],
'settings' => array(
array('name' => 'hdiReport', 'type' => 'str', 'value' => '', 'group' => null),
array('group' => 'hdi_main', 'name' => 'hdi_blockfolders', 'type' => 'arr', 'value' => ["ORDERFOLDER_PROBLEMS"]))
];