Skip to content

Latest commit

 

History

History
56 lines (45 loc) · 1.14 KB

README.md

File metadata and controls

56 lines (45 loc) · 1.14 KB

yii2-mmenu-widget

The yii2-mmenu-widget widget is a Yii 2 wrapper for the jQuery-mmenu:

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist wbraganca/yii2-mmenu-widget "*"

or add

"wbraganca/yii2-mmenu-widget": "*"

How to use

On your view file.

<?= \wbraganca\mmenu\Menu::widget([
    'items' => [
        [
            'label' => 'Home',
            'url' => '#',
            'icon' => 'glyphicon glyphicon-home'
        ],
        [
            'label' => 'Submenu',
            'url' => '',
            'icon' => 'glyphicon glyphicon-plus-sign',
            'items' => [
                [
                    'label' => 'link 1',
                    'url' => '#',
                    'icon' => 'glyphicon glyphicon-file',
                ],
                 [
                    'label' => 'link 2',
                    'url' => '#',
                    'icon' => 'glyphicon glyphicon-file',
                ],
            ]
        ]
    ]
]) ?>