-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.php
54 lines (47 loc) · 1.45 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
<?php
/**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <[email protected]>
* @link https://www.oxidmodule.com
*/
declare(strict_types=1);
/**
* Metadata version
*/
use D3\DataWizard\Application\Model\Configuration as ConfigurationParent;
use D3\DataWizardTasks\Modules\DataWizard\Application\Model\Configuration;
$sMetadataVersion = '2.1';
$sModuleId = 'd3datawizardtasks';
$logo = '<img src="https://logos.oxidmodule.com/d3logo.svg" alt="(D3)" style="height:1em;width:1em">';
/**
* Module information
*/
$aModule = [
'id' => $sModuleId,
'title' => [
'de' => $logo.' Data Wizard - Exporte und Aktionen',
'en' => $logo.' Data Wizard - exports and actions'
],
'description' => [
'de' => '',
'en' => '',
],
'thumbnail' => 'picture.svg',
'version' => '2.0.0.0',
'author' => 'D³ Data Development (Inh.: Thomas Dartsch)',
'email' => '[email protected]',
'url' => 'https://www.oxidmodule.com/',
'controllers' => [],
'extend' => [
ConfigurationParent::class => Configuration::class
],
'events' => [],
'templates' => [],
'settings' => [],
'blocks' => []
];