-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.php
43 lines (41 loc) · 919 Bytes
/
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
<?php
/**
* Copyright © hkreuter. All rights reserved.
* See LICENSE file for license details.
*/
/**
* Metadata version
*/
$sMetadataVersion = '2.1';
/**
* Module information
*/
$aModule = [
'id' => \HkReuter\OxSampleModule\Core\Module::MODULE_ID,
'title' => 'OxSample Module',
'description' => [
'de' => 'OXID eShop 6 Example Modul.',
'en' => 'OXID eShop 6 Example Module.',
],
'thumbnail' => 'logo.png',
'version' => '0.0.1',
'author' => 'hkreuter',
'url' => 'https://github.com/hkreuter',
'email' => 'heike.reuter@oxid-esales.com',
'extend' => [
],
'controllers' => [
],
'events' => [
'onActivate' => 'HkReuter\OxSampleModule\Core\Module::onActivate',
'onDeactivate' => 'HkReuter\OxSampleModule\Core\Module::onDeactivate',
],
'templates' => [
],
'blocks' => [
],
'settings' => [
],
'smartyPluginDirectories' => [
]
];