nimther/yii2-mmenu-widget

yii2-mmenu widget 是一个为 [jQuery-mmenu](http://mmenu.frebsite.nl/) 提供的 Yii 2 包装器。一个 jQuery 插件,只需一行 JavaScript 代码即可为您移动网站创建流畅、类似应用的滑动菜单

安装次数: 7

依赖者: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 6

类型:yii2-extension

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

This package is not auto-updated.

Last update: 2024-09-18 19:00:35 UTC


README

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