PHP code example of illagrenan / nette-navigation-control

1. Go to this page and download the library: Download illagrenan/nette-navigation-control 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/ */

    

illagrenan / nette-navigation-control example snippets



protected function createComponentNavigation($name)
{
    $navigation = new \Illagrenan\Navigation\Navigation($this, $name, $this->httpRequest);

    $navigation->addHomepage("Přehled obsahu", "Homepage:default");
    $navigation->addNode("Materiály", "Publishable:list");
    $navigation->addNode("Diskuze", "Discussion:list");

    $administration = $navigation->addNode("Administrace", "Admin:default")
                        ->addSpecialClass("special");

    $administration->addNode("Vytvořit obsah", "Admin:createPublishable");
    $administration->addNode("Správa diskuzí", "Admin:manageDiscussion");
    $administration->addNode("Správa tagů", "Admin:manageTags");

    return $navigation;
}