MOON
Server: Apache
System: Linux server1.studioinfinity.com.br 2.6.32-954.3.5.lve1.4.90.el6.x86_64 #1 SMP Tue Feb 21 12:26:30 UTC 2023 x86_64
User: artinside (517)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/artinside/www/finance/themes/web/views/process-steps.php
<div class="section clearfix header-stick hidden-sm" style="padding: 45px 0 10px 0">
    <div class="container clearfix">
        <ul class="process-steps process-5 clearfix">
            <li class="<?=(explode("/", $active)[0] == "carrinho" ? "active" : null);?>">
                <a href="<?= url("carrinho")?>" class="i-bordered i-circled divcenter fal fa-shopping-bag"></a>
                <h5>Minhas Compras</h5>
            </li>
            <li class="<?=(explode("/", $active)[1] == "entrar" ? "active" : null);?>">
                <a href="<?= url("fechar/entrar")?>" class="i-bordered i-circled divcenter fal fa-user-lock"></a>
                <h5>Indentificação</h5>
            </li>
            <li class="<?=(explode("/", $active)[1] == "endereco" ? "active" : null);?>">
                <a href="<?= url("fechar/endereco")?>" class="i-bordered i-circled divcenter fal fa-truck"></a>
                <h5>Entrega</h5>
            </li>
            <li class="<?=(explode("/", $active)[1] == "pagar" ? "active" : null);?>">
                <a href="#" class="i-bordered i-circled divcenter fal fa-credit-card"></a>
                <h5>Pagamento</h5>
            </li>
            <li class="<?=(explode("/", $active)[0] == "finalizar" ? "active" : null);?>">
                <a href="#" class="i-bordered i-circled divcenter fal fa-check-double"></a>
                <h5>Pedido Completo</h5>
            </li>
        </ul>

    </div>

</div>