<?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 <info@shopmodule.com> * @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' => '', 'version' => '1.0.2.0', 'author' => 'D³ Data Development (Inh.: Thomas Dartsch)', 'email' => 'support@shopmodule.com', 'url' => 'https://www.oxidmodule.com/', 'controllers' => [], 'extend' => [ ConfigurationParent::class => Configuration::class ], 'events' => [], 'templates' => [], 'settings' => [], 'blocks' => [] ];