blob: 093f4813c2fa2b94ae8d5204680b5b5755c17389 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
declare(strict_types=1);
/**
* @var object $dimensions
*/
assert(is_object($dimensions))
?>
<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>
|