-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.php
executable file
·37 lines (35 loc) · 1009 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
<?php
/**
* This Software is the property of OXID eSales and is protected
* by copyright law.
*
* Any unauthorized use of this software will be prosecuted by
* civil and criminal law.
*
* @link http://www.oxid-esales.com
* @copyright (C) OXID eSales AG 2003-2017
* @version OXID eSales Visual CMS
*/
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = [
'id' => 'oxsnestedwidgets',
'title' => 'Fixed 404 Page with nested widgets.',
'description' => [
'de' => 'Fixed 404 Page with nested widgets. Based on the PS module from Keywan Ghadami.',
'en' => 'Fixed 404 Page with nested widgets. Based on the PS module from Keywan Ghadami.',
],
'thumbnail' => '',
'version' => '',
'author' => '',
'url' => '',
'email' => '',
'extend' => [
\OxidEsales\Eshop\Core\Config::class => \OxidSupport\Fixed404PageWithNestedWidgets\Config::class
]
];