![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-store/view/frontend/templates/switch/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** @var \Magento\Store\Block\Switcher $block */ ?> <?php if (count($block->getGroups())>1) : ?> <div class="switcher store switcher-store" id="switcher-store"> <strong class="label switcher-label"><span><?= $block->escapeHtml(__('Select Store')) ?></span></strong> <div class="actions dropdown options switcher-options"> <?php foreach ($block->getGroups() as $_group) : ?> <?php if ($_group->getId() == $block->getCurrentGroupId()) : ?> <div class="action toggle switcher-trigger" role="button" tabindex="0" data-mage-init='{"dropdown":{}}' data-toggle="dropdown" data-trigger-keypress-button="true" id="switcher-store-trigger"> <strong> <span><?= $block->escapeHtml($_group->getName()) ?></span> </strong> </div> <?php endif; ?> <?php endforeach; ?> <ul class="dropdown switcher-dropdown" data-target="dropdown"> <?php foreach ($block->getGroups() as $_group) : ?> <?php if (!($_group->getId() == $block->getCurrentGroupId())) : ?> <li class="switcher-option"> <a href="#" data-post='<?= /* @noEscape */ $block->getTargetStorePostData($_group->getDefaultStore()) ?>'> <?= $block->escapeHtml($_group->getName()) ?> </a> </li> <?php endif; ?> <?php endforeach; ?> </ul> </div> </div> <?php endif; ?>