-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
42 lines (40 loc) · 1.25 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
39
40
41
42
<?php
/**
* This Software is the property of OXID eSales and is protected
* by copyright law - it is NOT Freeware.
*
* Any unauthorized use of this software without a valid license key
* is a violation of the license agreement and will be prosecuted by
* civil and criminal law.
*
* @author OXID Academy
* @link https://www.oxid-esales.com
* @copyright (C) OXID eSales AG 2003-2021
*
*/
/**
* Metadata version
*/
$sMetadataVersion = '2.1';
/**
* Module information
*/
$aModule = [
'id' => 'oxacfeefreepayments',
'title' => [
'de' => 'Kostenlose Zahlungsarten (Modulskelett)',
'en' => 'Fee Free Payments (module skeleton)'
],
'description' => [
'de' => 'Filter für die Anzeige ausschließlich kostenloser Zahlungsarten.',
'en' => 'Filter for displaying free payment options only.',
],
'thumbnail' => 'logo.png',
'version' => '2.0.0',
'author' => 'OXID Academy',
'url' => 'https://www.oxid-esales.com/academy/schulungen',
'email' => '[email protected]',
'extend' => [
\OxidEsales\Eshop\Application\Model\PaymentList::class => \OxidAcademy\FeeFreePayments\Model\PaymentList::class,
],
];