view/anax/v2/google-analytics/default.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

$tag = $tag ?? null;

?><!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=<?= $tag ?>"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', '<?= $tag ?>');
</script>