wbraganca/yii2-mmenu-widget

This package is abandoned and no longer maintained. No replacement package was suggested.

The yii2-mmenu widget is a Yii 2 wrapper for the [jQuery-mmenu](http://mmenu.frebsite.nl/). A jQuery plugin for creating slick, app look-alike sliding menus for you mobile website with only one line of javascript

v1.0.0 2014-12-08 23:42 UTC

This package is not auto-updated.

Last update: 2020-04-14 13:06:08 UTC


README

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',
                ],
            ]
        ]
    ]
]) ?>