[Added] add_to_cart to recommlist, wishlist, noticelist, Class-Extensions for corresponding templates

This commit is contained in:
2023-11-07 15:23:40 +01:00
parent a88fa570a8
commit ab6b7f7454
8 changed files with 180 additions and 10 deletions

View File

@ -0,0 +1,17 @@
<?php
namespace D3\GoogleAnalytics4\Modules\Application\Controller;
class d3GtmAccountRecommlistController extends d3GtmAccountRecommlistController_parent
{
protected $_sThisTemplate = 'page/account/d3gtmrecommendationlist.tpl';
public function render()
{
$return = parent::render();
$this->addTplParam('d3CmpBasket', $this->getComponent('oxcmp_basket'));
return $return;
}
}