BenitoDannes

breadcrumb.php

Mar 9th, 2020
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.62 KB | None | 0 0
  1. <!-- Breadcrumbs -->
  2. <ol class="breadcrumb">
  3.     <?php foreach ($this->uri->segments as $segment): ?>
  4.         <?php
  5.            $url = substr($this->uri->uri_string, 0, strpos($this->uri->uri_string, $segment)) . $segment;
  6.             $is_active = $url == $this->uri->uri_string;
  7.         ?>
  8.  
  9.     <li class="breadcrumb-item <?php echo $is_active ? 'active': '' ?>">
  10.         <?php if($is_active): ?>
  11.             <?php echo ucfirst($segment) ?>
  12.         <?php else: ?>
  13.             <a href="<?php echo site_url($url) ?>"><?php echo ucfirst($segment) ?></a>
  14.         <?php endif; ?>
  15.     </li>
  16.     <?php endforeach; ?>
  17. </ol>
Advertisement
Add Comment
Please, Sign In to add comment