12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- // @codingStandardsIgnoreFile
- /** @var \Magento\Cookie\Block\Html\Notices $block */
- ?>
- <?php if ($this->helper(\Magento\Cookie\Helper\Cookie::class)->isCookieRestrictionModeEnabled()): ?>
- <div role="alertdialog"
- tabindex="-1"
- class="message global cookie"
- id="notice-cookie-block"
- style="display: none;">
- <div role="document" class="content" tabindex="0">
- <p>
- <strong><?= $block->escapeHtml(__('We use cookies to make your experience better.')) ?></strong>
- <span><?= $block->escapeHtml(__('To comply with the new e-Privacy directive, we need to ask for your consent to set the cookies.')) ?></span>
- <?= $block->escapeHtml(__('<a href="%1">Learn more</a>.', $block->getPrivacyPolicyLink()), ['a']) ?>
- </p>
- <div class="actions">
- <button id="btn-cookie-allow" class="action allow primary">
- <span><?= $block->escapeHtml(__('Allow Cookies')) ?></span>
- </button>
- </div>
- </div>
- </div>
- <script type="text/x-magento-init">
- {
- "#notice-cookie-block": {
- "cookieNotices": {
- "cookieAllowButtonSelector": "#btn-cookie-allow",
- "cookieName": "<?= /* @noEscape */ \Magento\Cookie\Helper\Cookie::IS_USER_ALLOWED_SAVE_COOKIE ?>",
- "cookieValue": <?= /* @noEscape */ $this->helper(\Magento\Cookie\Helper\Cookie::class)->getAcceptedSaveCookiesWebsiteIds() ?>,
- "cookieLifetime": <?= /* @noEscape */ $this->helper(\Magento\Cookie\Helper\Cookie::class)->getCookieRestrictionLifetime() ?>,
- "noCookiesUrl": "<?= $block->escapeJs($block->escapeUrl($block->getUrl('cookie/index/noCookies'))) ?>"
- }
- }
- }
- </script>
- <?php endif; ?>
|