Files
awo-hamburg-intranet/mysyde/frontend/google_analytics.inc.php

8 lines
626 B
PHP
Raw Permalink Normal View History

2026-02-17 14:56:23 +01:00
<? if ($GLOBALS["site"]["google_analytics_id"] <> "") { ?>
<script>
let cookie_analytics = Cookies.get('analytics');
if(cookie_analytics == 1) {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', '<?= $GLOBALS["site"]["google_analytics_id"] ?>', 'auto'); ga('set', 'anonymizeIp', true); ga('send', 'pageview');
}
</script>
<? } ?>