-
Notifications
You must be signed in to change notification settings - Fork 1
/
metadata.php
41 lines (39 loc) · 1 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
<?php
/**
* Copyright © OXID eSales AG. All rights reserved.
* See LICENSE file for license details.
*/
use OxidEsales\Eshop\Core\Registry;
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = [
'id' => 'oxcom/react-translations',
'title' => '<span style="color: #49c8ef">React</span> Translations',
'description' => [
'en' => '<span>React Translations</span>',
],
'thumbnail' => 'out/pictures/react-logo.png',
'version' => '1.0.0',
'author' => 'OXID eSales',
'url' => 'www.oxid-esales.com',
'email' => '[email protected]',
'extend' => [
],
'controllers' => [
'translations' => \OxidProjects\React\Translations\Controller\Admin\Translations::class,
],
'templates' => [
'translations.tpl' => 'oxcom/react-translations/out/index.html'
],
'blocks' => [
],
'settings' => [
],
'events' => [
]
];