[Changed] process-list of add_to_cart; [Added] BasketComponent extensions to controll the trigger-behaviour of add_to_cart, ArticleDetailsController extension for add_to_Cart i view_item

add_to_cart no longer is a block extension, changed to an indiv tpl-file
This commit is contained in:
2023-11-07 10:59:39 +01:00
parent 5ac3385b53
commit 81aab10c4e
7 changed files with 77 additions and 97 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace D3\GoogleAnalytics4\Modules\Application\Controller;
class ArticleDetailsController extends ArticleDetailsController_parent
{
public function render()
{
$return = parent::render();
$this->addTplParam('d3CmpBasket', $this->getComponent('oxcmp_basket'));
return $return;
}
}