-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmetadata.php
More file actions
43 lines (41 loc) · 1.27 KB
/
metadata.php
File metadata and controls
43 lines (41 loc) · 1.27 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
34
35
36
37
38
39
40
41
42
43
<?php
/**
* Copyright © OXID eSales AG. All rights reserved.
* See LICENSE file for license details.
*/
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = [
'id' => 'oxcom/graphql-common',
'title' => '<span style="color: #d64292">GraphQL</span> Common Types',
'description' => [
'en' => '<span>Common Types of the GraphQL schema,
which just represent a kind of object you can fetch from the service, and what fields it has</span>',
'de' => '<span>Häufige Typen des GraphQL-Schemas,
die lediglich eine Art Objekt darstellen, das Sie vom Service abrufen können und welche Felder es enthält</span>',
],
'thumbnail' => 'out/pictures/graphql.png',
'version' => '0.0.1',
'author' => 'OXID eSales',
'url' => 'www.oxid-esales.com',
'email' => 'info@oxid-esales.com',
'extend' => [
],
'controllers' => [
],
'templates' => [
],
'blocks' => [
],
'settings' => [
],
'events' => [
'onActivate' => 'OxidEsales\\GraphQl\\Framework\\ModuleSetup::onActivate',
'onDeactivate' => 'OxidEsales\\GraphQl\\Framework\\ModuleSetup::onDeactivate'
]
];