1. Go to this page and download the library: Download inteve/navigation library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
php
use Inteve\Navigation\Navigation;
use Inteve\Navigation\MenuControl;
class NewsPresenter extends Nette\Application\UI\Presenter
{
/** @var Navigation @inject */
public $navigation;
protected function createComponentNewsMenu()
{
// render items 'News 2016' & 'News 2015'
$menu = new MenuControl($this->navigation);
$menu->setSubTree('news');
return $menu;
}
protected function createComponentSubMenu()
{
// Renders submenu by current page
// for setCurrentPage('news') or setCurrentPage('news/any/thing') it renders items 'news/2016' & 'news/2015'
// for setCurrentPage('contact') it renders nothing
$menu = new MenuControl($this->navigation);
$menu->setSubTree('/');
$menu->setSubLevel(1);
return $menu;
}
}
php
use Inteve\Navigation\Navigation;
use Inteve\Navigation\BreadcrumbsControl;
class Presenter extends Nette\Application\UI\Presenter
{
/** @var Navigation @inject */
public $navigation;
protected function createComponentBreadcrumbs()
{
return new BreadcrumbsControl($this->navigation);
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.