-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.php
More file actions
33 lines (32 loc) · 1.15 KB
/
metadata.php
File metadata and controls
33 lines (32 loc) · 1.15 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
32
33
<?php
/**
* This file is part of Christopher Olhoeft
*
* @author Christopher Olhoeft
*/
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = array(
'id' => 'co_mailattachment',
'title' => 'CO Email Attachment',
'description' => 'Email Anhang konfigurieren',
'thumbnail' => 'ho.png',
'version' => '1.0.0',
'author' => 'Christopher Olhoeft',
'email' => 'c.olhoeft@gmail.com',
'extend' => array(
\OxidEsales\Eshop\Core\Email::class => 'co/co_mailattachment/Core/Email',
),
'blocks' => array(
array('template' => 'email/html/order_cust.tpl', 'block'=>'email_html_order_cust_orderemailend', 'file'=>'out/blocks/email_html_order_cust_orderemailend.tpl'),
),
'settings' => array(
array('group' => 'PATH', 'name' => 'CO_AGB_FILE', 'type' => 'str', 'value' => 'out/downloads/AGB.pdf'),
array('group' => 'PATH', 'name' => 'CO_WITHDRAWAL_FILE', 'type' => 'str', 'value' => 'out/downloads/Widerrufsbelehrung.pdf'),
)
);