[Changed] clean code

Cette révision appartient à :
MaxBuhe01 2024-08-18 16:40:49 +02:00
Parent 48a598da51
révision 98ddc51a4d

Voir le fichier

@ -28,19 +28,17 @@ class WidgetControl extends WidgetControl_parent{
*/
$sScriptName = $_SERVER['SCRIPT_NAME'];
if($sScriptName != '/widget.php')
if($sScriptName !== '/widget.php')
{
return parent::getFrontendStartControllerKey();
}
$aParameter = $_GET;
if(is_null($aParameter['actcontrol'])
&& is_null($aParameter['actcontrol'])
&& is_null($aParameter['oxwparent'])
)
if(is_null($aParameter['actcontrol']) and is_null($aParameter['oxwparent']))
{
return 'D3\GoogleAnalytics4\Application\Component\Widget\d3GtmStartWidget';
}
return parent::getFrontendStartControllerKey();
}
}