src/Hitso/Bundle/AdminBundle/Resources/views/layout/analytics.html.twig line 1

Open in your IDE?
  1. {% if analytics_tracking_id is defined and analytics_tracking_id is not empty %}
  2.     <script>
  3.       (function (i, s, o, g, r, a, m) {
  4.         i['GoogleAnalyticsObject'] = r
  5.         i[r] = i[r] || function () {
  6.           (i[r].q = i[r].q || []).push(arguments)
  7.         }, i[r].l = 1 * new Date()
  8.         a = s.createElement(o),
  9.           m = s.getElementsByTagName(o)[0]
  10.         a.async = 1
  11.         a.src   = g
  12.         m.parentNode.insertBefore(a, m)
  13.       })(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga')
  14.       ga('create', '{{ analytics_tracking_id }}', 'auto')
  15.       {% if app.user %}
  16.       ga('set', 'userId', {{ app.user.id }})
  17.       {% endif %}
  18.       ga('send', 'pageview')
  19.     </script>
  20. {% endif %}