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