fadilzteria

breadcrumb

Dec 4th, 2018
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 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.  
  10.     <li class="breadcrumb-item <?php echo $is_active ? 'active': '' ?>">
  11.         <?php if($is_active): ?>
  12.             <?php echo ucfirst($segment) ?>
  13.         <?php else: ?>
  14.             <a href="<?php echo site_url($url) ?>"><?php echo ucfirst($segment) ?></a>
  15.         <?php endif; ?>
  16.     </li>
  17. <?php endforeach; ?>
  18. </ol>
Advertisement
Add Comment
Please, Sign In to add comment