54 lines
1.9 KiB
PHP
Raw Normal View History

2024-10-23 17:34:35 +02:00
<?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);
2024-11-16 13:50:58 +01:00
use D3\ManufacturerInformation\Application\Controller\Admin\ManufacturerInfoLongdesc;
use D3\ManufacturerInformation\Application\Model\Constants;
use D3\ManufacturerInformation\Modules\Application\Model\D3ManufacturerLongDesc;
use D3\ManufacturerInformation\Modules\Application\Model\ManufacturerInfoList;
use OxidEsales\Eshop\Application\Model\Manufacturer as OEManufacturer;
use OxidEsales\Eshop\Application\Model\ManufacturerList as OEManufacturerList;
$sMetadataVersion = '2.1';
2024-10-23 17:34:35 +02:00
/**
* Module information
*/
$aModule = [
2024-11-16 13:50:58 +01:00
'id' => Constants::OXID_MODULE_ID,
'title' => [
'de' => '(D3) Herstellerinformationen',
'en' => '(D3) Manufacturer information',
],
'description' => [
'de' => 'fügt Informationen der Hersteller zur Artikelliste hinzu',
'en' => 'adds manufacturer information to the article list',
2024-10-23 17:34:35 +02:00
],
'thumbnail' => 'image-file.png',
2024-11-16 13:50:58 +01:00
'version' => '2.0.0.0',
'author' => '(D3) Data Development (Inh.: Thomas Dartsch)',
2024-10-23 17:34:35 +02:00
'email' => 'support@shopmodule.com',
'url' => 'https://www.oxidmodule.com/',
'controllers' => [
2024-10-23 20:18:20 +02:00
"d3manufacturerinfolongdesc" => ManufacturerInfoLongdesc::class
2024-10-23 17:34:35 +02:00
],
'extend' => [
OEManufacturer::class => D3ManufacturerLongDesc::class,
OEManufacturerList::class => ManufacturerInfoList::class
2024-10-23 17:34:35 +02:00
],
'templates' => [
2024-11-16 16:03:12 +01:00
'@' . Constants::OXID_MODULE_ID . '/admin/d3manufacturerlongdesc.tpl' => 'views/smarty/admin/d3manufacturerlongdesc.tpl',
2024-10-23 17:34:35 +02:00
],
];