Breadcrumbs is an small library that helps your manage HTML breadcrumbs with CodeIgniter. * No longer maintained
- Put Breadcrumbs.php in application/library folder
- Put breadcrumbs.php in application/config folder
// load Breadcrumbs
$this->load->library('breadcrumbs');
// add breadcrumbs
$this->breadcrumbs->push('Section', '/section');
$this->breadcrumbs->push('Page', '/section/page');
// unshift crumb
$this->breadcrumbs->unshift('Home', '/');
// output
$this->breadcrumbs->show();
Released under the MIT License, Copyright (c) 2012–ω Buti.