Ecosyste.ms: Awesome

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

https://github.com/richarddavey/codeigniter-breadcrumb

Breadcrumb generating library for CodeIgniter
https://github.com/richarddavey/codeigniter-breadcrumb

Last synced: about 1 month ago
JSON representation

Breadcrumb generating library for CodeIgniter

Lists

README

        

# CodeIgniter-Breadcrumb

CodeIgniter-Breadcrumb is a library that helps your build HTML breadcrumbs with CodeIgniter.

## Requirements

* CodeIgniter 2.0.x

## Example

// load libary
$this->load->library('breadcrumb');

// add breadcrumbs
$this->breadcrumb->appendCrumb('Home', '/');
$this->breadcrumb->appendCrumb('Page', '/page');

// put this line in view to output
$this->breadcrumb->output();