Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nobuti/Codeigniter-breadcrumbs
Small breadcrumb library for CodeIgniter
https://github.com/nobuti/Codeigniter-breadcrumbs
Last synced: 3 days ago
JSON representation
Small breadcrumb library for CodeIgniter
- Host: GitHub
- URL: https://github.com/nobuti/Codeigniter-breadcrumbs
- Owner: nobuti
- Created: 2012-02-14T18:10:28.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-07-26T05:56:56.000Z (over 8 years ago)
- Last Synced: 2024-04-15T03:02:05.574Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 70
- Watchers: 13
- Forks: 67
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-codeigniter - Codeigniter-breadcrumbs - Small breadcrumb library for CodeIgniter. (Libraries)
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.