PHP code example of kak / navmenu

1. Go to this page and download the library: Download kak/navmenu 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/ */

    

kak / navmenu example snippets


use kak\widgets\navmenu\Sidebar;
use yii\web\View;
use yii\web\Controller;
/**
 * @var $this View 
 * @var $context Controller 
*/
$context =  $this->context;

use kak\widgets\navmenu\Tabs;

echo Tabs::widget([
    'options' => ['class' => 'nav nav-tabs '],
    'items' => [
        ['label' => 'Stat for Month', 'url' => ['month'], 'active' => true],
        // ...
    ]
]);

php composer.phar