alpixel/adminmenubundle

此包由我们的团队用于管理自定义管理员菜单

v1.0 2016-08-29 15:15 UTC

This package is not auto-updated.

Last update: 2024-09-23 13:07:57 UTC


README

Latest Stable Version Build Status Build Status

安装

  • 安装包
composer require 'alpixel/adminmenubundle'
  • 更新 AppKernel.php 文件
    <?php
    // app/AppKernel.php
    
    class AppKernel extends Kernel
    {
        public function registerBundles()
        {
            $bundles[] = new Alpixel\Bundle\AdminMenuBundle\AlpixelAdminMenuBundle();

            // ...
        }

        // ...       
    }
  • 在 app/config 目录中创建 menu.yml 文件,检查以下配置示例
    mainMenu:
        IndexMenu_1: # The key is the name that will be displayed
            type: 'route'
            route: 'your_route'
            icon: 'fontawesome-icon' # The icon option is a css class which prefix with "fa fa-" 
            visibility: [ROLE_CUSTOMER_ADMIN] # You can add multiples roles defined in your security policy, the element doesn't appear in the DOM
            children: # With the children option you can add many sub items, visibility and icon can be defined for each element
                children_1: # The key is the name that will be displayed
                    type: 'route'
                    route: 'what_you_want_1'
                children_2:
                    type: 'route'
                    route: 'what_you_want_2'
                    parameters: # You can add static parameters to the route link
                        my_parameter_1: 'a value'
                        my_parameter_2: 3
  • 要在模板中显示菜单,请使用以下行
    {{ knp_menu_render('main', {depth: 2}) }}