PHP code example of culture-pn-psu / yii2-menu

1. Go to this page and download the library: Download culture-pn-psu/yii2-menu 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/ */

    

culture-pn-psu / yii2-menu example snippets


return [
    ...
    'modules' => [
        'menu' => [
            'class' => 'culturePnPsu\menu\Module',
        ],
    ],
    'components'=>[...]
    ...
];


$nav = new culturePnPsu\menu\models\Navigate();
$menu = $nav->menu(menu_cate_id);

dmstr\widgets\Menu::widget([
    'options' => ['class' => 'sidebar-menu'],
    'items' => $menu,
]);