56 lines
1.6 KiB
PHP
56 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* This Software is the property of Data Development and is protected
|
|
* by copyright law - it is NOT Freeware.
|
|
* Any unauthorized use of this software without a valid license
|
|
* is a violation of the license agreement and will be prosecuted by
|
|
* civil and criminal law.
|
|
* http://www.shopmodule.com
|
|
*
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
|
* @author D3 Data Development - Daniel Seifert <ds@shopmodule.com>
|
|
* @link http://www.oxidmodule.com
|
|
*/
|
|
|
|
/**
|
|
* Metadata version
|
|
*/
|
|
$sMetadataVersion = '2.1';
|
|
|
|
$sModuleId = 'd3datawizard';
|
|
$logo = '<img src="https://logos.oxidmodule.com/d3logo.svg" alt="(D3)" style="height:1em;width:1em">';
|
|
|
|
/**
|
|
* Module information
|
|
*/
|
|
$aModule = [
|
|
'id' => $sModuleId,
|
|
'title' => $logo.' Data Wizard framework',
|
|
'description' => [
|
|
'de' => '',
|
|
'en' => '',
|
|
],
|
|
'thumbnail' => '',
|
|
'version' => '0.1',
|
|
'author' => 'D³ Data Development (Inh.: Thomas Dartsch)',
|
|
'email' => 'support@shopmodule.com',
|
|
'url' => 'https://www.oxidmodule.com/',
|
|
'controllers' => [
|
|
'd3ExportWizard' => D3\DataWizard\Application\Controller\Admin\d3ExportWizard::class
|
|
],
|
|
'extend' => [],
|
|
'events' => [],
|
|
'templates' => [
|
|
'd3ExportWizard.tpl' => 'd3/datawizard/Application/views/admin/tpl/d3ExportWizard.tpl',
|
|
],
|
|
'settings' => [
|
|
[
|
|
'group' => $sModuleId.'_general',
|
|
'name' => $sModuleId.'_debug',
|
|
'type' => 'bool',
|
|
'value' => false
|
|
],
|
|
],
|
|
'blocks' => []
|
|
];
|