xref: /webtrees/resources/views/modules/google-analytics/snippet.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
17c2c99faSGreg Roach<?php
27c2c99faSGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
57c2c99faSGreg Roach/**
67c2c99faSGreg Roach * @var object $dimensions
77c2c99faSGreg Roach */
87c2c99faSGreg Roach
97c2c99faSGreg Roachassert(is_object($dimensions))
107c2c99faSGreg Roach
117c2c99faSGreg Roach?>
128e5c5efeSGreg Roach<script async src="https://www.google-analytics.com/analytics.js"></script>
138e5c5efeSGreg Roach<script>
148e5c5efeSGreg Roach    window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};
158e5c5efeSGreg Roach    ga.l=+new Date;
168e5c5efeSGreg Roach    ga("create", "<?=  e($GOOGLE_ANALYTICS_ID ?? '') ?>", "auto");
17728c8c27SGreg Roach    ga("send", "pageview", <?= json_encode($dimensions, JSON_THROW_ON_ERROR) ?>);
188e5c5efeSGreg Roach</script>
19