custom/plugins/papooCcm19Integration6/src/Resources/views/storefront/layout/meta.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
  2. {# Integrate CCM19 before any other script (especially GTM) #}
  3. {% block layout_head_meta_tags_charset %}
  4.     {% set ccm19Integration = page.extensions[constant('Papoo\\Ccm19Integration\\Subscriber\\Frontend::CCM19_INTEGRATION_EXTENSION_ID')] %}
  5.     {% if ccm19Integration.url %}
  6.     <!-- BEGIN CCM19 Cookie Consent Management -->
  7.     <script src="{{ ccm19Integration.url|escape }}" referrerpolicy="origin"></script>
  8.     <!-- END CCM19 -->
  9.     {% endif %}
  10.     {{ parent() }}
  11. {% endblock %}