8
0

correct/add description

remove unnecessary metadata blocks
Dieser Commit ist enthalten in:
Thomas Dartsch 2024-11-13 17:07:14 +01:00
Ursprung 0faa57ecb2
Commit ce6fcf3b4b
2 geänderte Dateien mit 3 neuen und 29 gelöschten Zeilen

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

@ -32,8 +32,8 @@ $aModule = [
'id' => $sModuleId,
'title' => $logo.' Herstellerinformationen',
'description' => [
'de' => 'Beschreibung hinzufügen',
'en' => 'add desc',
'de' => 'fügt Informationen der Hersteller zur Artikelliste hinzu',
'en' => 'adds manufacturer information to the article list',
],
'thumbnail' => 'image-file.png',
'version' => '1.1.0.0',
@ -44,36 +44,10 @@ $aModule = [
"d3manufacturerinfolongdesc" => ManufacturerInfoLongdesc::class
],
'extend' => [
// Model
OEManufacturer::class => D3ManufacturerLongDesc::class,
OEManufacturerList::class => ManufacturerInfoList::class
],
'events' => [
// 'onActivate' => '\D3\ThisModule\Setup\Events::onActivate',
// 'onDeactivate' => '\D3\ThisModule\Setup\Events::onDeactivate',
],
'templates' => [
'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'
],
];