Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php if ($root->getDepth() === 0) : ?> <ul class="uk-nav uk-nav-side"> <?php endif ?> ..

Decoded Output download

<?php if ($root->getDepth() === 0) : ?>
<ul class="uk-nav uk-nav-side">
<?php endif ?>

    <?php foreach ($root->getChildren() as $node) : ?>
    <li class="<?= $node->hasChildren() ? 'uk-parent' : '' ?><?= $node->get('active') ? ' uk-active' : '' ?>">
        <a href="<?= $node->getUrl() ?>"><?= $node->title ?></a>

        <?php if ($node->hasChildren()) : ?>
        <ul class="uk-nav-sub">
            <?= $this->render('system/site/widget-menu.php', ['root' => $node]) ?>
        </ul>
        <?php endif ?>
    </li>
    <?php endforeach ?>

<?php if ($root->getDepth() === 0) : ?>
</ul>
<?php endif ?>

Did this file decode correctly?

Original Code

<?php if ($root->getDepth() === 0) : ?>
<ul class="uk-nav uk-nav-side">
<?php endif ?>

    <?php foreach ($root->getChildren() as $node) : ?>
    <li class="<?= $node->hasChildren() ? 'uk-parent' : '' ?><?= $node->get('active') ? ' uk-active' : '' ?>">
        <a href="<?= $node->getUrl() ?>"><?= $node->title ?></a>

        <?php if ($node->hasChildren()) : ?>
        <ul class="uk-nav-sub">
            <?= $this->render('system/site/widget-menu.php', ['root' => $node]) ?>
        </ul>
        <?php endif ?>
    </li>
    <?php endforeach ?>

<?php if ($root->getDepth() === 0) : ?>
</ul>
<?php endif ?>

Function Calls

None

Variables

None

Stats

MD5 8d15bc86d5060129b4cd936cd84bec6e
Eval Count 0
Decode Time 86 ms