Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-backend/view/adminhtml/templates/widget/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-backend/view/adminhtml/templates/widget/accordion.phtml

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/** @var \Magento\Framework\View\Helper\SecureHtmlRenderer $secureRenderer */
?>
<?php
/**
 * Template for \Magento\Backend\Block\Widget\Accordion
 */
$items = $block->getItems();
?>
<?php if (!empty($items)): ?>
    <dl id="tab_content_<?= $block->getHtmlId() ?>" name="tab_content_<?= $block->getHtmlId() ?>" class="accordion">
    <?php foreach ($items as $_item): ?>
        <?= $block->getChildHtml($_item->getId()) ?>
    <?php endforeach ?>
    </dl>
    <?php $scriptString = <<<script
        require([
            'mage/adminhtml/accordion'
        ], function(){
            tab_content_{$block->getHtmlId()}AccordionJs = new varienAccordion('tab_content_{$block->getHtmlId()}',
             '{$block->escapeJs($block->getShowOnlyOne())}');
        });
script;
    ?>
    <?= /* @noEscape */ $secureRenderer->renderTag('script', [], $scriptString, false) ?>
<?php endif; ?>