![]() 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-config/view/adminhtml/templates/system/config/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** @var $block \Magento\Config\Block\System\Config\Tabs */ ?> <?php if ($block->getTabs()) : ?> <div id="<?= $block->escapeHtmlAttr($block->getId()) ?>" class="config-nav"> <?php /** @var $_tab \Magento\Config\Model\Config\Structure\Element\Tab */ foreach ($block->getTabs() as $_tab) : $activeCollapsible = false; foreach ($_tab->getChildren() as $_section) { if ($block->isSectionActive($_section)) { $activeCollapsible = true; } } ?> <div class="config-nav-block admin__page-nav _collapsed <?php if ($_tab->getClass()) : ?> <?= $block->escapeHtmlAttr($_tab->getClass()) ?> <?php endif ?>" data-mage-init='{"collapsible":{"active": "<?= $block->escapeHtmlAttr($activeCollapsible) ?>", "openedState": "_show", "closedState": "_hide", "collapsible": true, "animate": 200}}'> <div class="admin__page-nav-title title _collapsible" data-role="title"> <strong><?= $block->escapeHtml($_tab->getLabel()) ?></strong> </div> <ul class="admin__page-nav-items items" data-role="content"> <?php $_iterator = 1; ?> <?php /** @var $_section \Magento\Config\Model\Config\Structure\Element\Section */ foreach ($_tab->getChildren() as $_section) : ?> <li class="admin__page-nav-item item <?= $block->escapeHtml($_section->getClass()) ?> <?php if ($block->isSectionActive($_section)) : ?> _active<?php endif ?> <?= $_tab->getChildren()->isLast($_section) ? ' _last' : '' ?>"> <a href="<?= $block->escapeUrl($block->getSectionUrl($_section)) ?>" class="admin__page-nav-link item-nav"> <span><?= $block->escapeHtml($_section->getLabel()) ?></span> </a> </li> <?php $_iterator++; ?> <?php endforeach; ?> </ul> </div> <?php endforeach; ?> </div> <?php endif; ?>