PHP Classes

File: themes/default/breadcrumb.php

Recommend this page to a friend!
  Packages 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: Refine subscriber dashboard UI, update technical dashboard with videos, and change WhatsApp link to GitHub
Date: 3 days ago
Size: 620 bytes
 

Contents

Class file image Download
<?php
/**
 * @var array $breadcrumb
 */
?>
<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">
                <?= ($val->url ? '<a href="' . $val->url . '" class="--xhr">' : '<b class="text-muted">'); ?>
<?= ($val->icon ? '<i class="' . $val->icon . '"></i>' : null); ?>
<?= $val->label; ?>
<?= ($val->url ? '</a>' : '</b>'); ?>
</li>
        <?php endforeach; ?>
</ol>
</nav>