PHP Classes

File: themes/default/breadcrumb.php

Recommend this page to a friend!
  Classes of Aby Dahana   Aksara   themes/default/breadcrumb.php   Download  
File: themes/default/breadcrumb.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Aksara
A CodeIgniter based API and CRUD generator
Author: By
Last change: Version update
Date: 5 months ago
Size: 492 bytes
 

Contents

Class file image Download
<nav role="breadcrumb" aria-label="breadcrumb" id="breadcrumb-wrapper">
    <ol class="breadcrumb rounded-0 mb-0 pt-1 pb-1">
        <?php foreach ($breadcrumb as $key => $val): ?>
<li class="breadcrumb-item">
                <a href="<?= $val->url; ?>" class="--xhr">
                    <?= ($val->icon ? '<i class="' . $val->icon . '"></i>' : null); ?>
<?= $val->label; ?>
</a>
            </li>
        <?php endforeach; ?>
</ol>
</nav>