summaryrefslogtreecommitdiff
path: root/resources/views/modules/google-analytics/snippet.phtml
blob: 37d5825383215ce7824632ebe600186fe4b9eb3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

declare(strict_types=1);

/**
 * @var object $dimensions
 * @var string $GOOGLE_ANALYTICS_ID
 */

?>
<script async src="https://www.google-analytics.com/analytics.js"></script>
<script>
    window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};
    ga.l=+new Date;
    ga("create", "<?=  e($GOOGLE_ANALYTICS_ID) ?>", "auto");
    ga("send", "pageview", <?= json_encode($dimensions, JSON_THROW_ON_ERROR) ?>);
</script>