- Creating links, drop menus, line (diver) in the navbar-left and/or navbar-right
- Sorting, editing, and deleting using drag and drop
- No jQuery for drag and drop (RubaXa/Sortable)
- CRUD operations by jQuery Ajax)
composer require zacksleo/yii2-menu dev-master
Add the following code to config file Yii2
'modules' => [
'menu' => [
'class' => '\zacksleo\menu\Menu',
],
]
Make sure that you have properly configured db
application component
and run the following command:
$ php yii migrate/up --migrationPath=@vendor/zacksleo/yii2-menu/migrations
use zacksleo\menu\Menu;
NavBar::begin(['brandLabel' => 'Brand','brandUrl' => Url::home(),]);
echo Nav::widget([ 'options' => ['class' => 'navbar-nav navbar-left'],
'items' => Menu::NavbarLeft(1) // argument is id of menu
]);
echo Nav::widget([ 'options' => ['class' => 'navbar-nav navbar-right'],
'items' => Menu::NavbarRight(1)
]);
NavBar::end();
example.com/menu/creator