tlr/menu
Composer 安装命令:
composer require tlr/menu
包简介
Take some of the stress and boilerplate out of building menus (or indeed any list, because that's basically what a menu is) With support for laravel
README 文档
README
An attempt to take a bit of the stress and boilerplate out of building menus (or indeed any list, because that's basically what a menu is) Comes with support for Laravel 4 (other frameworks to follow)
Framework Integrations:
Installation
Simply require the library like so:
composer require tlr/menu "2.*"
Basic Usage
Make a new MenuItem class for your menu:
$menu = new Tlr\Menu\MenuItem;
Add some menu items:
$home = $menu->item( 'home', 'Home', 'http://foo.com' ); $blog = $menu->item( 'blog', 'Blog', 'http://foo.com/blog' ); $about = $menu->item( 'about', 'About', 'http://foo.com/about-us' );
Why not add a sub-menu? The menu, and all of its items are all the same MenuItem class, so creating submenus is the same as with top level menus:
$about->item( 'where-we-are', 'Where We Are', 'http://eric.com/where-are-we' ); $about->item( 'contact-us', 'Contact Us', 'http://eric.com/contact-us' );
Then in you view, you can iterate over the menu's items using the $menu->getItems() method.
You can retreive an existing item by using its key:
$blog = $menu->item('blog');
The method signature is as follows:
$menu->item( $key[, $title = "", $options = array(), $attributes = array(), $index = $n + 100] )
$keyis a string key used to retrieve the item. It is also added, in slugified form, to the class attribute. It is the only required argument.$titleis the text to display in the list item$optionsis an array of options for the item. If you pass a string to the third item, it will assume it is the link option, and will convert it toarray( 'link' => $string )$attributesis an array of attributes for the HTML element$indexis an optional index to insert a new menu item at. The indices, by default, default to increments of 100, starting at 100, so you can easily insert items in between them.
Managing Multiple Menus
If you have, say, a header and a footer menu, you can use the MenuRepository class:
$repo = new MenuRepository; $headerMenu = $repo->menu( 'header-nav' ); $footerMenu = $repo->menu( 'footer-nav' );
and you can retrieve the menu later in your code in the same way:
$headerMenu = $repo->menu( 'header-nav' ); // will use the existing menu instance cached with this key $newMenu = $repo->menu( 'other-nav' ); // that key hasn't been used yet, so a new instance will be created and cached with that key
Filters
The menu can be filtered. Say you have a menu for usage in an admin area, or in a context with user auth levels or permissions. You have two options:
- You can pass a filter closure to the
getItemsmethod that fill be used to filter the menu items.
// This will filter the items based on user permissions $menu->getItems(function($item) use ($user) { return $user->can( $item->option( 'permissions', array() ) ); });
- You can add multiple filters to a menu with the
addFilter($callable)method. These filters will be applied when thegetItemsmethod is called.
// This will add a filter that only lets the given user see the menu items if they have the appropriate auth level $menu->addFilter(function($item) use ($user) { return $item->option('auth') <= $user->authLevel; }); $menu->getItems();
- You don't have to filter an entire menu - you can filter a submenu, too:
$about->addFilter(function() { return $item->isVisible(); });
- By default, any filters added with
addFilterget applied to submenus. You can override this behaviour by passing false as the second argument:
$menu->addFilter(function($item) use ($user) { return $user->canSeePage( $item ); }, false);
- If you do not want to filter the items, you can call
$menu->getItems(false)
Activating
To mark menu items as active, you have a few options:
Say you have this 2 level menu:
$home = $menu->item( 'home', 'Home', 'http://foo.com' ); $blog = $menu->item( 'blog', 'Blog', 'http://foo.com/blog' ); $about = $menu->item( 'about', 'About', 'http://foo.com/about-us' ); $contact = $about->item( 'contact', 'Contact Us', 'http://foo.com/contact-us' ); $find = $about->item( 'find', 'Find Us', 'http://foo.com/find-us' );
Manual Activation
You can manually activate any of those items with the setActive method:
$blog->setActive();
URL Matching
For a more automated approach, you can recursively mark one of those as activated based on the current URL. For example:
$menu->activate( $currentUrl );
This would match the given url against each of the menu's items, and mark them as active if the url matches. It also calls each item's children, and marks the parents as active if they have an active child item. ie. activeness bubbles up the chain.
So, if the current URL was http://foo.com/contact-us, this would mark the about menu item, and its child item, contact as active.
Advanced
If you want to match based on something different than URL, you can match against anything in a MenuItem's options array:
$home = $menu->item( 'home', 'Home', [ 'link' => 'http://foo.com', 'routename' => 'home' ] ); $blog = $menu->item( 'blog', 'Blog', [ 'link' => 'http://foo.com/blog', 'routename' => 'blog' ] ); $menu->activate( 'blog', 'routename' );
Laravel
Add Tlr\Menu\Laravel\MenuServiceProvider to the providers array in Laravel's config/app.php's, and add 'Menu' => 'Tlr\Menu\Laravel\MenuFacade' to the aliases array.
You can then use the Menu facade as a shortcut for the MenuRepository class, like so:
$menu = Menu::menu( 'nav' ); $menu->item('Home')
after which, you can access it again later with Menu::menu( 'nav' ).
The Laravel version of the class can be echoed out (which will call the render() method). This renders the menu using Laravel's blade templating system. You have two options for customising:
- You can override the Menu Builder views (run
php artisan vendor:publish, then edit those files). - You can pass a view to the parent menu like so. This view will have the
MenuItemobject available as the$menuvariable:
$menu->setView( 'my.menu.view' );
tlr/menu 适用场景与选型建议
tlr/menu 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 9.65k 次下载、GitHub Stars 达 17, 最近一次更新时间为 2013 年 11 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「menu」 「list」 「laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 tlr/menu 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 tlr/menu 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 tlr/menu 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Easily provide front-end sorting controls for SilverStripe lists
A block to display a list of links to child pages, or pages in current level
A Symfony extension to get active class base on current bundle/controller/action
Adjacency List’ed Closure Table database design pattern implementation for Laravel. Includes restore of tree
Yii2 DynaTree Menu widget uses Dynamic tree view control jquery.dynatree.js
Alfabank REST API integration
统计信息
- 总下载量: 9.65k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 18
- 点击次数: 24
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-11-25