|
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
-
- /** @var \Magento\Customer\Block\SectionConfig $block */
- ?>
- <script type="text/x-magento-init">
- {
- "*": {
- "Magento_Customer/js/section-config": {
- "sections": <?= /* @noEscape */ $this->helper(\Magento\Framework\Json\Helper\Data::class)->jsonEncode($block->getSections()) ?>,
- "clientSideSections": <?= /* @noEscape */ $this->helper(\Magento\Framework\Json\Helper\Data::class)->jsonEncode($block->getClientSideSections()) ?>,
- "baseUrls": <?= /* @noEscape */ $this->helper(\Magento\Framework\Json\Helper\Data::class)->jsonEncode(array_unique([
- $block->getUrl(null, ['_secure' => true]),
- $block->getUrl(null, ['_secure' => false]),
- ])) ?>,
- "sectionNames": <?= /* @noEscape */ $this->helper(\Magento\Framework\Json\Helper\Data::class)
- ->jsonEncode($block->getData('sectionNamesProvider')->getSectionNames()) ?>
- }
- }
- }
- </script>
|