templates/google_analytics/event_v4.html.twig line 1

Open in your IDE?
  1. {# Google Analytics 4 #}
  2. {% if event != null %}
  3.     if (typeof gtag === 'function') {
  4.         gtag('event', '{{ event.name }}', {
  5.             'items': [{% include 'google_analytics/items_v4.html.twig' %}],
  6.             {% if event.transactionId is not empty %}
  7.                 'transaction_id': '{{ event.transactionId }}',
  8.             {% endif %}
  9.             {% if event.affiliation is not empty %}
  10.                 'affiliation': '{{ event.affiliation }}',
  11.             {% endif %}
  12.             {% if event.value is not empty %}
  13.                 'value': '{{ event.value }}',
  14.             {% endif %}
  15.             {% if event.currency is not empty %}
  16.                 'currency': '{{ event.currency }}',
  17.             {% endif %}
  18.             {% if event.coupon is not empty %}
  19.                 'coupon': '{{ event.coupon }}',
  20.             {% endif %}
  21.         });
  22.     }
  23. {% endif %}