wartron / yii2-widgets-urlactive
Yii2 Widgets to override Nav and Menu isItemActive
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0
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'],
]
],
]
]);