![]() 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-backend/view/adminhtml/templates/widget/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> <dl id="dl-<?= /* @noEscape */ $id ?>" class="accordion"> <?php foreach ($sections as $sectionId => $section) : ?> <dt id="dt-<?= /* @noEscape */ $id ?>-<?= /* @noEscape */ $sectionId ?>"> <strong><?= $block->escapeHtml($section['title']) ?></strong> </dt> <dd id="dd-<?= /* @noEscape */ $id ?>-<?= /* @noEscape */ $section['id'] ?>" class="section-menu <?= !empty($section['active']) ? 'open' : '' ?>"> <ul> <?php foreach ($section['children'] as $menuId => $menuItem) : ?> <li id="li-<?= /* @noEscape */ $id ?>-<?= /* @noEscape */ $sectionId ?>-<?= /* @noEscape */ $menuId ?>"> <a href="#" title="<?= $block->escapeHtmlAttr($menuItem['title']) ?>"> <span><?= $block->escapeHtml($menuItem['label']) ?></span> </a> </li> <?php endforeach ?> </ul> </dd> <?php endforeach ?> </dl>