GoogleAnalytics4/Modules/Core/WidgetControl.php

43 regels
1.3 KiB
PHP

<?php
namespace D3\GoogleAnalytics4\Modules\Core;
use OxidEsales\EshopCommunity\Core\Registry;
2024-08-08 14:16:25 +02:00
class WidgetControl extends WidgetControl_parent{
2024-08-27 14:25:55 +02:00
protected function getFrontendStartControllerKey() // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
{
/*
* array (
'force_sid' => '2pistlaubiq58qtg3moudei0la',
'lang' => '0',
'actcontrol' => 'details',
'anid' => '064471',
'cl' => 'oxwarticledetails',
'cnid' => '159dd0f2fb2bd6e24ace53a0f1913797',
'listtype' => 'list',
'nocookie' => '1',
'oxwparent' => 'details',
'sid' => '2pistlaubiq58qtg3moudei0la',
'stoken' => 'A22D0F9E',
'varselid' =>
array (
0 => 'b842982bf522aa839bd88221f562fce8',
),
)
*/
2024-08-08 14:16:25 +02:00
$sScriptName = $_SERVER['SCRIPT_NAME'];
2024-08-18 16:40:49 +02:00
if($sScriptName !== '/widget.php')
2024-08-08 14:16:25 +02:00
{
return parent::getFrontendStartControllerKey();
}
$aParameter = $_GET;
2024-08-18 16:40:49 +02:00
if(is_null($aParameter['actcontrol']) and is_null($aParameter['oxwparent']))
{
return 'D3\GoogleAnalytics4\Application\Component\Widget\d3GtmStartWidget';
}
2024-08-18 16:40:49 +02:00
2024-08-08 14:16:25 +02:00
return parent::getFrontendStartControllerKey();
}
}