forked from OXID-eSales/graphql-account-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.php
46 lines (43 loc) · 1.18 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
46
<?php
/**
* Copyright © OXID eSales AG. All rights reserved.
* See LICENSE file for license details.
*/
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = [
'id' => 'oe_graphql_account',
'title' => [
'de' => 'GraphQL Konto',
'en' => 'GraphQL Account',
],
'description' => [
'de' => '<span>OXID GraphQL Konto</span>',
'en' => '<span>OXID GraphQL Account</span>',
],
'thumbnail' => 'out/pictures/logo.png',
'version' => '0.1.0',
'author' => 'OXID eSales',
'url' => 'www.oxid-esales.com',
'email' => '[email protected]',
'extend' => [
\OxidEsales\Eshop\Application\Model\Basket::class => \OxidEsales\GraphQL\Account\Shared\Shop\Basket::class,
\OxidEsales\Eshop\Application\Model\Voucher::class => \OxidEsales\GraphQL\Account\Shared\Shop\Voucher::class,
],
'controllers' => [
],
'templates' => [
],
'blocks' => [
],
'settings' => [
],
'events' => [
'onActivate' => 'OxidEsales\\GraphQL\\Account\\Framework\\ModuleSetup::onActivate'
]
];