rikiless / breadcrumb-component
Basic component rendering breadcrumb for websites using Nette Framework
0.9.2
2014-05-04 18:14 UTC
Requires
- php: >=5.4
- nette/application: @dev
This package is not auto-updated.
Last update: 2025-03-01 18:30:20 UTC
README
Basic component rendering breadcrumb for websites using Nette Framework.
Included template is compatible with Bootstrap 3.2 *
Requirements
This package requires PHP 5.4.
Installation
The best way to install this package is using Composer:
$ composer require "rikiless/breadcrumb-component:@dev"
And register the factory in config.neon
:
services: - Rikiless\BreadcrumbComponent\IControl
Use
Inject to presenter:
class Presenter ... { /** * @var Rikiless\BreadcrumbComponent\IControl * @inject */ public $breadcrumbControl; public function createComponentBreadcrumb() { return $this->breadcrumbControl->create(); } }
Render in template:
{control breadcrumb}
Add items to breadcrumb
class CatalogPresenter ... { public function actionEpisode($id) { //$episode = ...($id); $this['breadcrumb'] ->add('Series', $this->link('Homepage:genres')) ->add($episode->show->name, $this->link('Homepage:show', $episode->show->url)) ->add('All episodes', $this->link('Homepage:episodes', $episode->show->url)) ->add($episode->show->name); } }
Custom template
You can use your own template by this way:
class Presenter ... { public function createComponentBreadcrumb() { $breadcrumb = $this->breadcrumbControl->create(); $breadcrumb->setTemplate(__DIR__. '/../templates/_breadcrumb.latte'); return $breadcrumb; } }
Translations
Translations are supported.
Examples
* In default template is use of classes .visible-sm
mixed with .visible-lg
and it seems to be broken in Bootstrap 3.1.