-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
38 lines (37 loc) · 1.23 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
<?php
/**
* Metadata version
*/
$sMetadataVersion = '2.1';
/**
* Module information
*/
$aModule = [
'id' => 'multiordermailreceiver',
'title' => [
'de' => 'PaBlo - Mehrere Empfänger für die Admin-Bestell-E-Mail',
'en' => 'PaBlo - multiple receivers for the admin order email',
],
'description' => [
'de' => 'Das Modul erweitert die Anzahl der E-Mailempfänger fü Admin-Bestell-E-Mail',
'en' => 'This module extends the amount of the admin order mail receivers',
],
'version' => '1.1.0',
'author' => 'Patrick Blom',
'url' => 'https://www.patrick-blom.de/',
'email' => '[email protected]',
'extend' => [
\OxidEsales\Eshop\Core\Email::class => \PaBlo\MultiOrderMailReceiver\Core\Email::class
],
'blocks' => [
[
'template' => 'shop_main.tpl',
'block' => 'admin_shop_main_leftform',
'file' => 'Application/views/admin/blocks/shop_main__admin_shop_main_leftform.tpl'
]
],
'events' => [
'onActivate' => '\PaBlo\MultiOrderMailReceiver\Core\MultiOrderMailReceiver::onActivate',
'onDeactivate' => '\PaBlo\MultiOrderMailReceiver\Core\MultiOrderMailReceiver::onDeactivate'
]
];