-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.php
More file actions
31 lines (22 loc) · 1.07 KB
/
Copy pathmetadata.php
File metadata and controls
31 lines (22 loc) · 1.07 KB
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' => 'mdbackendmodule',
'title' => 'MD New Birthday Modul',
'version' => '1.0',
'author' => 'Moritz Demmer',
'events' => array(
),
'blocks' => array(
array('template' => 'layout/page.tpl', 'block'=>'content_main', 'file'=>'/views/blocks/md_start.tpl'),
),
'settings' => array(
array('group' => 'main', 'name' => 'Geburtstagstext', 'type' => 'str', 'value' => 'Alles Gute zum Geburtstag!'),
array('group' => 'main', 'name' => 'Geburtstagstext_Hidden', 'type' => 'bool', 'value' => 'false'),
array('group' => 'main', 'name' => 'nichtEingeloggtAufforderung', 'type' => 'str', 'value' => 'Log dich mal ein!'),
array('group' => 'main', 'name' => 'nichtEingeloggtAufforderung_Hidden', 'type' => 'bool', 'value' => 'false')
),
'extend' => array (
\OxidEsales\Eshop\Application\Controller\Admin\VoucherSerieGroups::class => \OxidEsales\MdModul\Controller\Admin\VoucherSerieGroups::class
)
];