* @link https://www.oxidmodule.com */ namespace D3\GoogleAnalytics4\Modules\Core; use OxidEsales\Eshop\Application\Controller\FrontendController; use OxidEsales\Eshop\Core\Registry; use OxidEsales\EshopCommunity\Internal\Container\ContainerFactory; use OxidEsales\EshopCommunity\Internal\Framework\Module\Configuration\Bridge\ModuleSettingBridgeInterface; class ViewConfig extends ViewConfig_parent { // Google Tag Manager Container ID private $sContainerId = null; public function getGtmContainerId() { if ($this->sContainerId === null) { $this->sContainerId = ContainerFactory::getInstance() ->getContainer() ->get(ModuleSettingBridgeInterface::class) ->get('d3_gtm_sContainerID', 'd3googleanalytics4'); } return $this->sContainerId; } private $blGA4enabled = null; public function isGA4enabled() { if ($this->blGA4enabled === null) { $this->sContainerId = ContainerFactory::getInstance() ->getContainer() ->get(ModuleSettingBridgeInterface::class) ->get('d3_gtm_blEnableGA4', 'd3googleanalytics4'); } return $this->blGA4enabled; } public function getGtmDataLayer() { if (!$this->getGtmContainerId()) return "[]"; $oConfig = Registry::getConfig(); $oView = $oConfig->getTopActiveView(); /** @var FrontendController $oShop */ $oUser = $oConfig->getUser(); $cl = $this->getTopActionClassName(); $aPageTypes = [ "content" => "cms", "details" => "product", "alist" => "listing", "search" => "listing", "basket" => "checkout", "user" => "checkout", "payment" => "checkout", "order" => "checkout", "thankyou" => "checkout", ]; $dataLayer = [ 'page' => [ 'type' => $aPageTypes[$cl] ?? "unknown", 'title' => $oView->getTitle(), 'cl' => $cl, ], 'userid' => ($oUser ? $oUser->getId() : false), 'sessionid' => session_id() ?? false, //'httpref' => $_SERVER["HTTP_REFERER"] ?? "unknown" ]; return json_encode([$dataLayer], JSON_PRETTY_PRINT); } public function isPromotionList($listId) { $oConfig = Registry::getConfig(); $aPromotionListIds = $oConfig->getConfigParam("") ?? ['bargainItems', 'newItems', 'topBox', 'alsoBought', 'accessories', 'cross']; } }