-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.php
55 lines (50 loc) · 1.36 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
47
48
49
50
51
52
53
54
55
<?php
/**
* Copyright © MB Arbatos Klubas. All rights reserved.
* See LICENSE file for license details.
*/
declare(strict_types=1);
/**
* Metadata version
*/
$sMetadataVersion = '2.1';
/**
* Module information
*/
$aModule = [
'id' => \FreshAdvance\Sitemap\Module::MODULE_ID,
'title' => 'Sitemap',
'description' => [
'en' => 'Sitemap module for OXID eShop.',
'de' => 'Sitemap-Modul für OXID eShop.',
],
'thumbnail' => 'pictures/logo.png',
'version' => '1.0.1',
'author' => 'Anton Fedurtsya',
'email' => '[email protected]',
'url' => '',
'controllers' => [
],
'extend' => [
],
'settings' => [
/** Main */
[
'group' => 'fa_sitemap_main',
'name' => \FreshAdvance\Sitemap\Settings\ModuleSettings::SETTING_SITEMAP_DIRECTORY,
'type' => 'str',
'value' => 'sitemap'
],
/** Additional */
[
'group' => 'fa_sitemap_additional',
'name' => \FreshAdvance\Sitemap\Settings\ModuleSettings::SETTING_ADDITIONAL_SITEMAP_URLS,
'type' => 'arr',
'value' => ['/']
],
],
'events' => [
'onActivate' => '\FreshAdvance\Sitemap\Events::onActivate',
'onDeactivate' => '\FreshAdvance\Sitemap\Events::onDeactivate'
]
];