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: 3 days ago
JSON representation
Breadcrumb generating library for CodeIgniter
- Host: GitHub
- URL: https://github.com/richarddavey/codeigniter-breadcrumb
- Owner: richarddavey
- Created: 2011-03-31T09:12:46.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-04-04T15:05:46.000Z (over 13 years ago)
- Last Synced: 2024-02-15T11:34:02.252Z (9 months ago)
- Language: PHP
- Homepage:
- Size: 93.8 KB
- Stars: 34
- Watchers: 8
- Forks: 28
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-codeigniter - CodeIgniter-Breadcrumb - Breadcrumb generating library for CodeIgniter. (Libraries)
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();