templates/components/VkPixel.html.twig line 1

Open in your IDE?
  1. {% set serviceCode = siteGlobals.globals.service.code.value %}
  2. {# Определяем параметры в зависимости от сайта #}
  3. {% if serviceCode == 'lawyer' %}
  4.     {# gde-ocenka.ru #}
  5.     {% set vkPixelId = 'VK-RTRG-1953816-f4nBz' %}
  6.     {% set vkApiUrl = 'https://vk.com/js/api/openapi.js?173' %}
  7.     {% set mailruCounterId = '3721354' %}
  8. {% elseif serviceCode == 'notary' %}
  9.     {# online-ocenka.ru #}
  10.     {% set vkPixelId = 'VK-RTRG-1209308-bWVfo' %}
  11.     {% set vkApiUrl = 'https://vk.com/js/api/openapi.js?169' %}
  12.     {% set mailruCounterId = '3743256' %}
  13. {% else %}
  14.     {# infonot.ru и другие #}
  15.     {% set vkPixelId = 'VK-RTRG-1209308-bWVfo' %}
  16.     {% set vkApiUrl = 'https://vk.com/js/api/openapi.js?169' %}
  17.     {% set mailruCounterId = null %}
  18. {% endif %}
  19. {# Подключаем VK Retargeting #}
  20. {% include 'tracking/vk_retargeting.html.twig' with {
  21.     vkId: vkPixelId,
  22.     vkApiUrl: vkApiUrl
  23. } %}
  24. {# Подключаем Mail.ru только если ID определён #}
  25. {% if mailruCounterId is not null %}
  26.     {% include 'tracking/mailru_counter.html.twig' with {
  27.         mailruId: mailruCounterId
  28.     } %}
  29. {% endif %}