-
Notifications
You must be signed in to change notification settings - Fork 1
/
metadata.php
45 lines (43 loc) · 1.34 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
43
44
45
<?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-2019
*/
/**
* Metadata version
*/
$sMetadataVersion = '2.1';
/**
* Module information
*/
$aModule = [
'id' => 'oxacoxcoin',
'title' => [
'de' => 'OXID Coin (Modulskelett)',
'en' => 'OXID Coin (module skeleton)'
],
'description' => [
'de' => 'Modul für die Zahlung mit der Kryptowährung OXID Coin.',
'en' => 'Module for the payment with the crypto currency OXID Coin.',
],
'thumbnail' => 'logo.png',
'version' => '2.0.1',
'author' => 'OXID Academy',
'url' => 'https://www.oxid-esales.com/academy/schulungen',
'email' => '[email protected]',
'events' => [
'onActivate' => '\OxidAcademy\OxCoin\Core\Events::onActivate',
'onDeactivate' => '\OxidAcademy\OxCoin\Core\Events::onDeactivate'
],
'extend' => [
\OxidEsales\Eshop\Application\Model\Order::class => \OxidAcademy\OxCoin\Model\Order::class
],
];