DataWizard/metadata.php

62 lines
2.0 KiB
PHP
Raw Normal View History

2021-04-16 14:04:30 +02:00
<?php
2021-04-20 11:20:34 +02:00
2021-04-16 14:04:30 +02:00
/**
2021-04-20 11:20:34 +02:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
2021-04-16 14:04:30 +02:00
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2021-04-20 11:20:34 +02:00
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
2021-04-16 14:04:30 +02:00
*/
2021-04-20 09:57:44 +02:00
declare(strict_types=1);
2021-04-16 14:04:30 +02:00
/**
* Metadata version
*/
$sMetadataVersion = '2.1';
$sModuleId = 'd3datawizard';
$logo = '<img src="https://logos.oxidmodule.com/d3logo.svg" alt="(D3)" style="height:1em;width:1em">';
2021-04-16 14:04:30 +02:00
/**
* Module information
*/
$aModule = [
'id' => $sModuleId,
'title' => $logo.' Data Wizard',
2021-04-16 14:04:30 +02:00
'description' => [
'de' => '',
'en' => '',
],
'thumbnail' => '',
2023-03-30 13:33:39 +02:00
'version' => '2.1.1.2',
2021-04-16 14:04:30 +02:00
'author' => 'D&sup3; Data Development (Inh.: Thomas Dartsch)',
'email' => 'support@shopmodule.com',
'url' => 'https://www.oxidmodule.com/',
'controllers' => [
2021-05-05 23:20:42 +02:00
'd3ExportWizard' => D3\DataWizard\Application\Controller\Admin\d3ExportWizard::class,
2022-01-17 10:59:18 +01:00
'd3ActionWizard' => D3\DataWizard\Application\Controller\Admin\d3ActionWizard::class,
2021-04-16 14:04:30 +02:00
],
'extend' => [],
'events' => [],
'templates' => [
'd3ExportWizard.tpl' => 'd3/datawizard/Application/views/admin/tpl/d3ExportWizard.tpl',
2021-05-05 23:20:42 +02:00
'd3ActionWizard.tpl' => 'd3/datawizard/Application/views/admin/tpl/d3ActionWizard.tpl',
'd3Wizards.tpl' => 'd3/datawizard/Application/views/admin/tpl/inc/Wizards.tpl',
'd3ExportSubmit.tpl' => 'd3/datawizard/Application/views/admin/tpl/inc/exportSubmit.tpl',
'd3ActionSubmit.tpl' => 'd3/datawizard/Application/views/admin/tpl/inc/actionSubmit.tpl',
2021-04-16 14:04:30 +02:00
],
'settings' => [
[
'group' => $sModuleId.'_general',
'name' => $sModuleId.'_debug',
'type' => 'bool',
2022-01-17 10:59:18 +01:00
'value' => false,
],
],
2022-01-17 10:59:18 +01:00
'blocks' => [],
2021-04-16 14:04:30 +02:00
];