templates/google_analytics/event.html.twig line 1

Open in your IDE?
  1. {% if event is defined and event is not empty and event.event == 'eec.logging' %}
  2.     dataLayer.push({
  3.         'event': 'logowanie'
  4.     });
  5. {% elseif event is defined and event is not empty and event.products is defined and event.products is not empty %}
  6. dataLayer.push({
  7.     'event': '{{ event.event }}',
  8.     'ecommerce': {
  9.         {% if event.currencyCode is not empty %}
  10.             'currencyCode': '{{ event.currencyCode }}',
  11.         {% endif %}
  12.         {% if event.event == 'eec.prod_impression' %}
  13.             'impressions':
  14.             [
  15.                 {% include 'google_analytics/products.html.twig' %}
  16.             ]
  17.         {% else %}
  18.             '{{ event.action }}': {
  19.             {% if event.actionField is not empty %}
  20.                 'actionField': {
  21.                 {% if event.actionField.type == 'purchase' %}
  22.                     'revenue': '{{ event.actionField.price }}',
  23.                     'affiliation': '{{ event.actionField.affiliation }}',
  24.                     {% if event.actionField.coupon is defined %}
  25.                         'coupon': '{{ event.actionField.coupon }}',
  26.                     {% endif %}
  27.                     'id': '{{ event.actionField.id }}'
  28.                 {% elseif event.actionField.type == 'step' %}
  29.                     {% if event.actionField.option is not empty %}
  30.                         'option': '{{ event.actionField.option }}',
  31.                     {% endif %}
  32.                     'step': '{{ event.actionField.step }}'
  33.                 {% elseif event.actionField.type == 'list' %}
  34.                     'list': '{{ event.actionField.list }}'
  35.                 {% endif %}
  36.                 },
  37.             {% endif %}
  38.                 'products':
  39.                 [
  40.                     {% include 'google_analytics/products.html.twig' %}
  41.                 ]
  42.             }
  43.         {% endif %}
  44.     }
  45. });
  46. {% endif %}