Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nobuti/Codeigniter-breadcrumbs

Small breadcrumb library for CodeIgniter
https://github.com/nobuti/Codeigniter-breadcrumbs

Last synced: about 2 months ago
JSON representation

Small breadcrumb library for CodeIgniter

Awesome Lists containing this project

README

        

Breadcrumbs is an small library that helps your manage HTML breadcrumbs with CodeIgniter.
__* No longer maintained__

## Instalation

* Put Breadcrumbs.php in application/library folder
* Put breadcrumbs.php in application/config folder

## Example of use

// 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();

## License

Released under the MIT License, Copyright (c) 2012–ω Buti.