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

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
  2. {% block layout_head_title %}
  3. <title itemprop="name">
  4.     {{ basicConfig.shopName }}
  5. </title>
  6. {% endblock %}
  7. {% block layout_head_meta_tags %}
  8. {% if context.customer is null or context.customer is not defined %}
  9. {% if page.cmsPage is not null or page.cmsPage is defined %}
  10. <meta name="aks-page-type" content="cmsPage">
  11. <meta name="aks-page-ID" content="{{ page.header.navigation.active.id }}">
  12. {% endif %}
  13. {% if page.product is not null or page.product is defined %}
  14. <meta name="aks-page-type" content="product">
  15. <meta name="aks-page-ID" content="{{ page.product.id }}">
  16. {% endif %}
  17. <script>
  18.     if (document.querySelector("meta[name='aks-page-type']") && document.querySelector("meta[name='aks-page-ID']")) {
  19.         let data = {
  20.             type: document.querySelector("meta[name='aks-page-type']").getAttribute("content"),
  21.             id: document.querySelector("meta[name='aks-page-ID']").getAttribute("content")
  22.         };
  23.         console.log(JSON.stringify(data));
  24.         var xhr = new XMLHttpRequest();
  25.         var url = "/HelmaAuth";
  26.         xhr.open("POST", url, true);
  27.         xhr.setRequestHeader("Content-Type", "application/json");
  28.         xhr.onreadystatechange = function () {
  29.             if (xhr.readyState === 4 && xhr.status === 200) {
  30.                 var json = JSON.parse(xhr.responseText);
  31.                 if (json.status == 1) {
  32.                     window.location.replace(json.reURl);
  33.                 }
  34.             }
  35.         };
  36.         xhr.send(JSON.stringify(data));
  37.     }
  38. </script>
  39. {% endif %}
  40. {{ parent() }}
  41. {% endblock %}