Skip to content

Instantly share code, notes, and snippets.

@thephpx
Created July 13, 2012 01:48
Show Gist options
  • Save thephpx/3102233 to your computer and use it in GitHub Desktop.
Save thephpx/3102233 to your computer and use it in GitHub Desktop.
CodeIgniter breadcrumb generator from URI
if(!function_exists('create_breadcrumb')){
function create_breadcrumb(){
$ci = &get_instance();
$i=1;
$uri = $ci->uri->segment($i);
$link = '<ul>';
while($uri != ''){
$prep_link = '';
for($j=1; $j<=$i;$j++){
$prep_link .= $ci->uri->segment($j).'/';
}
if($ci->uri->segment($i+1) == ''){
$link.='<li>»<a href="'.site_url($prep_link).'"><b>';
$link.=$ci->uri->segment($i).'</b></a></li> ';
}else{
$link.='<li>» <a href="'.site_url($prep_link).'">';
$link.=$ci->uri->segment($i).'</a></li> ';
}
$i++;
$uri = $ci->uri->segment($i);
}
$link .= '</ul>';
return $link;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment