[Fixed] description

[Removed] unnecessary metadata entries
This commit is contained in:
Thomas Dartsch 2024-11-13 17:07:14 +01:00 committed by MaxBuhe01
parent a88866fbaf
commit 36401177b9
2 changed files with 3 additions and 27 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "d3/manufacturerinformation", "name": "d3/manufacturerinformation",
"description": "adds core informations of the manufacturers to the articlelist", "description": "adds manufacturer information to the article list",
"type": "oxideshop-module", "type": "oxideshop-module",
"keywords": [ "keywords": [
"oxid", "oxid",

View File

@ -33,10 +33,8 @@ $aModule = [
'id' => $sModuleId, 'id' => $sModuleId,
'title' => $logo.' Herstellerinformationen', 'title' => $logo.' Herstellerinformationen',
'description' => [ 'description' => [
'de' => 'Dieses Modul fügt Ihren Herstellereinstellungen einen Tab zur 'de' => 'fügt Informationen der Hersteller zur Artikelliste hinzu',
detaillierten Beschreibung Ihrer Hersteller hinzu.', 'en' => 'adds manufacturer information to the article list',
'en' => 'This module adds a new tab to the manufacturer-settings
to add manufacturer descriptions.',
], ],
'thumbnail' => 'image-file.png', 'thumbnail' => 'image-file.png',
'version' => '1.0.0.0', 'version' => '1.0.0.0',
@ -47,7 +45,6 @@ $aModule = [
"d3manufacturerinfolongdesc" => ManufacturerInfoLongdesc::class "d3manufacturerinfolongdesc" => ManufacturerInfoLongdesc::class
], ],
'extend' => [ 'extend' => [
// Model
OEManufacturer::class => D3ManufacturerLongDesc::class, OEManufacturer::class => D3ManufacturerLongDesc::class,
OEManufacturerList::class => ManufacturerInfoList::class OEManufacturerList::class => ManufacturerInfoList::class
], ],
@ -57,26 +54,5 @@ $aModule = [
], ],
'templates' => [ 'templates' => [
'd3manufacturerlongdesc.tpl' => 'd3/manufacturerinformation/Application/views/admin/tpl/d3manufacturer_longdesc.tpl', 'd3manufacturerlongdesc.tpl' => 'd3/manufacturerinformation/Application/views/admin/tpl/d3manufacturer_longdesc.tpl',
// 'flow_theme' => [
// 'd3FlowTemplateAlias.tpl' => 'd3/thismodule/Application/views/tpl/d3FlowTheme.tpl',
// ],
],
'settings' => [
// [
// 'group' => $sModuleId.'_headline',
// 'name' => $sModuleId.'_name',
// 'type' => 'bool',
// 'value' => false,
// ],
],
'blocks' => [
// [
// 'template' => 'layout/footer.tpl',
// 'block' => 'footer_main',
// 'file' => 'Application/views/blocks/layout/footer_main_mymodule.tpl'
// ]
],
'smartyPluginDirectories' => [
// 'Core/Smarty/Plugin'
], ],
]; ];