wartron/yii2-widgets-urlactive

Yii2 Widgets to override Nav and Menu isItemActive

dev-master 2015-08-30 01:23 UTC

This package is not auto-updated.

Last update: 2025-03-29 20:39:19 UTC


README

These two simple widgets provide an easy way to have both \yii\widgets\Menu and \yii\bootstrap\Nav items active state depend on more than the url it is set to. We accomplish this by adding an Array of other possible url patterns that it should check against. If you look at either Menu.php or Nav.php the code is pretty simple.

An Example of using this wartron\yii2widgets\urlactive\Nav widget instead of the stock for basic crud is that all the crud urls will keep the menu items state to active.

use wartron\yii2widgets\urlactive\Nav;

echo Nav::widget([
    'items' =>  [
        [
            'label'     => 'Gizmos',
            'url'       => ['/crud/gizmo/index'],
            'urlActive' => [
                ['/crud/gizmo/view'],
                ['/crud/gizmo/update'],
                ['/crud/gizmo/create'],
            ]
        ],
    ]
]);