wucdbm/menu-builder-bundle
Composer 安装命令:
composer require wucdbm/menu-builder-bundle
包简介
A simple, standalone Menu Builder for Symfony 2 Applications
README 文档
README
A simple, standalone Menu Builder for Symfony 2 Applications
Upcoming / TODO
- TODO: Introduce cache. Use either WucdbmBundle or Symfony's Cache component, if it finally gets native Memcached impl.
Minor TODO
- Put docs inside of this bundle, this is the Core and is for developers only. The Client one is meant to be your base client, if that does not satisfy you, build your own with your own user experience
- TODO: Static config with system routes - upon import, always make all of these system
Usage
Having properly configured uglifycss and uglifyjs is a requirement for production.
Add this bundle to your AppKernel.php new \Wucdbm\Bundle\MenuBuilderBundle\WucdbmMenuBuilderBundle()
In your config.yml, add WucdbmMenuBuilderBundle to your assetic bundles, as well as your doctrine mapping (if not automatic)
Execute app/console doctrine:schema:update --dump-sql and after verifying what is being executed, execute again with --force.
Alternatively, use doctrine migrations via the DoctrineMigrations bundle.
Execute app/console wucdbm_menu_builder:import_routes to import your current routes from your symfony application into the tables created by the bundle.
Alternatively, add Wucdbm\\Bundle\\MenuBuilderBundle\\Composer\\ScriptHandler::importRoutes to your composer.json's post-install-cmd or post-update-cmd command list and this will be executed after every install or update
Once this has been done, you can start using the bundle. Simply register it in your routing.yml like so:
wucdbm_builder:
resource: "@WucdbmMenuBuilderBundle/Resources/config/routing.yml"
prefix: /admin/builder
Assuming that /admin is protected by a firewall, the builder should be secure and inaccessible to random people.
You can create a link to the builder using {{ path('wucdbm_menu_builder_dashboard') }}, or embed it into your admin UI via an iframe like so <iframe src="{{ path('wucdbm_menu_builder_dashboard') }}" style="border: 0; width: 100%; height: 100%;"></iframe>
The User Interface is pretty anemic as this bundle only implements the core functionality and the administrative (for developers) functionality.
If you want to let users (non-developers) manipulate menus, check out the WucdbmMenuBuilderClientBundle()
Once you have created a menu, you can access it in your application by calling the getMenu
twig function, which will return Wucdbm\Bundle\MenuBuilderBundle\Entity\Menu or null.
A menu contains Wucdbm\Bundle\MenuBuilderBundle\Entity\MenuItems.
Menu items can be nested, ie they have a parent and children.
A good idea when listing the top-level menu is to only list items whose parent is null:
{# New: You can use the menuTopLevelItems filter to get all top-level items: #}
{% for item in getMenu(1)|menuTopLevelItems %}
{% if getMenu(1) %} {# You could also use any constant with the constant() function or any other way of referencing the menu ID #}
{% for item in getMenu(1).items if item.parent is null %}
{# You can recursively include your templates to list the sub-menus #}
{% include '@Some/location/template.html.twig' with {items: item.children} %}
{% endfor %}
{% endif %}
{% if getMenu(1) %}
{% for item in getMenu(1).items if item.parent is null %}
<li>
<a href="{{ path('admin_menu_view', {menuId: item.menu.id, itemId: item.id}) }}">
{{ item.name }}
</a>
</li>
{% endfor %}
{% endif %}
Printing a link for a menu is done via the menuItemPath twig filter/function, like so:
<a href="{{ item|menuItemPath }}">
{{ item.name }}
</a>
Or for absolute links
<a href="{{ item|menuItemUrl }}">
{{ item.name }}
</a>
You can also use the second (optional) parameter for menuItemUrl and set the type of address (one of the Symfony\Component\Routing\Generator\UrlGeneratorInterface constants)
Dynamic Default Parameters
If you want to have a dynamic default parameter for some of your routes, for instance, routes with a dynamic locale:
In config.yml:
parameters:
locale: en
framework:
default_locale: %locale%
In routing.yml:
some_resource:
resource: "@SomeBundle/Resources/config/routing.yml"
prefix: /{_locale}
schemes: [https]
requirements:
_locale: "en|de|ru"
defaults:
_locale: %locale%
Generally, you do NOT need the defaults: {_locale: %locale%} part because you already have the default locale configured in your framework bundle config, but this will only work for _locale
However, with this approach the default value for the _locale route parameter will be available to the menu builder when importing routes.
When building a link, you may choose to leave the field blank if there is a default parameter.
This will allow you to change the default value for that parameter at a later point, WITHOUT having to update menu items.
When routes are updated during the deployment of your application, the default value for that parameter of your route will also be updated.
The current value of the default parameter will always be saved upon menu item edit anyway, but the menu builder will always try to use the current default value for that route parameter.
If the default value for any parameter has been removed, it will fallback to the route default parameter as has been on the last menu item save.
Not to be confused with symfony internal parameters such as _locale that may have another default value in the current context
An example would be a site with default locale of "en", but the user is browsing the "fr" version. You want your links to always point to the current locale and not to a pre-selected one or the default for your site. Which is a feature that has not yet been developed, but this would allow you to completely ignore a parameter and not provide it if it already exists in the router context? To be researched. See TODOs for more information on this.
wucdbm/menu-builder-bundle 适用场景与选型建议
wucdbm/menu-builder-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 632 次下载、GitHub Stars 达 0, 最近一次更新时间为 2015 年 10 月 28 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「menu」 「Symfony2」 「builder」 「wucdbm」 「menu builder」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 wucdbm/menu-builder-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 wucdbm/menu-builder-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 wucdbm/menu-builder-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Symfony extension to get active class base on current bundle/controller/action
A Sphinx Query Builder extension for the Laravel Database package
Anax Database Active Record module for model classes.
A simple package to create tables in Discord messages.
Symfony2 Barcode Generator Bundle with Twig function extension
Symfony bundle to connect AWS sns and sqs to create offline queue processing
统计信息
- 总下载量: 632
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 19
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0
- 更新时间: 2015-10-28