add cookiefirst necessary script-attributes

This commit is contained in:
MaxBUhe 2023-06-27 08:46:51 +02:00
parent 0ae67c823b
commit 54fcbf88c9

View File

@ -115,8 +115,7 @@ class ViewConfig extends ViewConfig_parent
*/ */
public function getGtmScriptAttributes() :string public function getGtmScriptAttributes() :string
{ {
$oConfig = Registry::getConfig(); $sCookieId = trim(Registry::getConfig()->getConfigParam('d3_gtm_settings_cookieName'));
$sCookieId = $oConfig->getConfigParam('d3_gtm_settings_cookieName');
if (false === $this->shallUseOwnCookieManager()){ if (false === $this->shallUseOwnCookieManager()){
return ""; return "";
@ -144,6 +143,10 @@ class ViewConfig extends ViewConfig_parent
} }
} }
if ($this->sCookieManagerType === ManagerTypes::COOKIEFIRST){
return 'type="text/plain" data-cookiefirst-category="' . $sCookieId .'"';
}
return ""; return "";
} }