2017 © Pedro Peláez
 

symfony-bundle adminmenubundle

This bundle is used by our team to manage a custom admin menu

image

alpixel/adminmenubundle

This bundle is used by our team to manage a custom admin menu

  • Monday, August 29, 2016
  • by gouaille
  • Repository
  • 2 Watchers
  • 0 Stars
  • 1,515 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 2 % Grown

The README.md

AlpixelAdminMenuBundle

Latest Stable Version Build Status Build Status, (*1)

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}) }}

The Versions

29/08 2016

dev-master

9999999-dev https://www.alpixel.fr

This bundle is used by our team to manage a custom admin menu

  Sources   Download

MIT

The Requires

 

The Development Requires

by ALPIXEL

symfony2 bundle symfony admin menu alpixel

29/08 2016

v1.0

1.0.0.0 https://www.alpixel.fr

This bundle is used by our team to manage a custom admin menu

  Sources   Download

MIT

The Requires

 

The Development Requires

by ALPIXEL

symfony2 bundle symfony admin menu alpixel

29/08 2016

dev-develop

dev-develop https://www.alpixel.fr

This bundle is used by our team to manage a custom admin menu

  Sources   Download

MIT

The Requires

 

by ALPIXEL

symfony2 bundle symfony admin menu alpixel