alpixel / adminmenubundle
This bundle is used by our team to manage a custom admin menu
Installs: 2 977
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
pkg:composer/alpixel/adminmenubundle
Requires
- php: >=5.3.0
- doctrine/doctrine-bundle: ~1.6
- doctrine/orm: ~2.4
- knplabs/knp-menu-bundle: 2.*
- sensio/framework-extra-bundle: ~3.0
- symfony/symfony: ~2.8|~3.0
Requires (Dev)
- phpunit/phpunit: ~5.4
- phpunit/phpunit-mock-objects: ~3.2
This package is not auto-updated.
Last update: 2025-10-20 19:26:23 UTC
README
Installation
- Install the package
composer require 'alpixel/adminmenubundle'
- Update AppKernel.php
    <?php
    // app/AppKernel.php
    
    class AppKernel extends Kernel
    {
        public function registerBundles()
        {
            $bundles[] = new Alpixel\Bundle\AdminMenuBundle\AlpixelAdminMenuBundle();
            // ...
        }
        // ...       
    }
- Create the menu.yml file in app/config directory, check the configuration example below
    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
- To display the menu use this line in your template
    {{ knp_menu_render('main', {depth: 2}) }}