You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
700 B

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Cookie settings initialization script
  8. *
  9. * @var $block \Magento\Framework\View\Element\Js\Cookie
  10. */
  11. ?>
  12. <script type="text/x-magento-init">
  13. {
  14. "*": {
  15. "mage/cookies": {
  16. "expires": null,
  17. "path": "<?= $block->escapeJs($block->getPath()) ?>",
  18. "domain": "<?= $block->escapeJs($block->getDomain()) ?>",
  19. "secure": <?= $block->getSessionConfig()->getCookieSecure() ? 'true' : 'false'; ?>,
  20. "lifetime": "<?= $block->escapeJs($block->getLifetime()) ?>"
  21. }
  22. }
  23. }
  24. </script>