wbraganca/yii2-mmenu-widget

此包已被废弃,不再维护。未建议替代包。

yii2-mmenu小部件是Yii 2对[jQuery-mmenu](http://mmenu.frebsite.nl/)的包装。一个jQuery插件,只需一行JavaScript即可为您移动网站创建流畅的滑动菜单,使其外观类似于应用程序。

安装: 567

依赖项: 0

建议者: 0

安全: 0

星标: 2

关注者: 1

分支: 7

开放问题: 4

类型:yii2-extension

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

yii2-mmenu-widget小部件是jQuery-mmenu的Yii 2包装

安装

通过composer安装此扩展是首选方式。

运行以下命令之一:

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

或添加以下内容

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

如何使用

在您的视图文件中。

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