Spamworldpro Mini Shell
Spamworldpro


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/mirasvit/module-core/src/Core/view/adminhtml/templates/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/mirasvit/module-core/src/Core/view/adminhtml/templates/menu.phtml
<?php
/** @var \Mirasvit\Core\Block\Adminhtml\Menu $block */
?>
<style>
    .page-title-wrapper .page-title {
        display: none;
    }
</style>
<div class="admin__action-dropdown-wrap mst-core-menu">
    <button
        type="button"
        class="admin__action-dropdown"
        data-mage-init='{"dropdown":{}}'
        data-toggle="dropdown"
        aria-haspopup="true">
        <i class="fa fa-bars"></i>
        <span class="admin__action-dropdown-text"><?php /* @escapeNotVerified */
            echo $block->getActiveTitle() ?></span>
    </button>

    <ul class="admin__action-dropdown-menu">
        <?php foreach ($block->getItems() as $item): ?>
            <?php if ($item == \Mirasvit\Core\Block\Adminhtml\AbstractMenu::SEPARATOR): ?>
                <li class="separator"></li>
                <?php continue; endif; ?>

            <li>
                <?php $target = $item->getTarget() ? 'target="' . $item->getTarget() . '"' : ''; ?>
                <a href="<?php echo $item->getUrl() ?>" <?= $target ?> >
                    <?php echo $block->escapeHtml($item->getTitle()) ?>
                </a>

                <?php if ($item->getItems()): ?>
                    <ul>
                        <?php foreach ($item->getItems() as $child): ?>
                            <li>
                                <a href="<?= $child->getUrl() ?>">
                                    <?= $block->escapeHtml($child->getTitle()) ?>
                                </a>
                            </li>
                        <?php endforeach ?>
                    </ul>
                <?php endif ?>
            </li>
        <?php endforeach ?>
    </ul>
</div>

Spamworldpro Mini