xref: /webtrees/resources/views/modules/google-analytics/snippet.phtml (revision 6bd19c8ce39244f770147102c818d9c7d9e13667)
17c2c99faSGreg Roach<?php
27c2c99faSGreg Roach
310e06497SGreg Roachdeclare(strict_types=1);
410e06497SGreg Roach
57c2c99faSGreg Roach/**
67c2c99faSGreg Roach * @var object $dimensions
7f9f6fffdSGreg Roach * @var string $GOOGLE_ANALYTICS_ID
87c2c99faSGreg Roach */
97c2c99faSGreg Roach
107c2c99faSGreg Roach?>
118e5c5efeSGreg Roach<script async src="https://www.google-analytics.com/analytics.js"></script>
128e5c5efeSGreg Roach<script>
138e5c5efeSGreg Roach    window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};
148e5c5efeSGreg Roach    ga.l=+new Date;
15*6bd19c8cSGreg Roach    ga("create", "<?=  e($GOOGLE_ANALYTICS_ID) ?>", "auto");
16728c8c27SGreg Roach    ga("send", "pageview", <?= json_encode($dimensions, JSON_THROW_ON_ERROR) ?>);
178e5c5efeSGreg Roach</script>
18