Download the PHP package kalamu/menu-service-bundle without Composer

On this page you can find all versions of the php package kalamu/menu-service-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package menu-service-bundle

MenuServiceBundle

This bundle provide a menu service for knp/menu-bundle that is configurable by config file.

Installation

Puis ajouter dans AppKernel.php

How to build a menu

To build a menu, you just have to add the items in your app/config/config.yml file :

Then, to add the menu in the template :

Security

Restrict access by roles

The roles option allow to control if an item is available to an user depending on his authorizations. This option take an array of roles. The user must be authorized for each of theses roles to see the item.

Example:

To access the home item, the user must have both roles ROLE_USER and ROLE_OPEN_DOOR.

Restrict access by expression

The 'allow_if' option provide a more customizable way to handle the restrictions. The option take an expression as argument. For more information about the syntax, see the documentation about How to use Expressions in Security.

Example:

To access the Home item, the user must have either the role ROLE_USER or the role ROLE_OPEN_DOOR.

The option roles can be used in combination with the allow_if options. In such case, both constraints must be satisfied to grant access.

Restrict access by hierarchy

On a menu with hierarchical items, most of the time the parent item has no sens without his children. So it must be removed if all children are not accessible to the current user.

If there is only a few underlying roles, this could be handled with the allow_if option. But if the number of constraints grow, the task become uselessly cumbersome.

The hide_if_no_child option solve this problem. If set to true, the item is available only if the user has access to at least one child.

Example:

Customisation

If you want to change interactivly you menu, you can use the events kalamu.menu_service.configure.{menu_name}. For more informations on knp/menu-bundle : https://github.com/KnpLabs/KnpMenuBundle/blob/master/Resources/doc/events.md#create-a-listener


All versions of menu-service-bundle with dependencies

PHP Build Version
Package Version
Requires symfony/symfony Version ^3.0||^4.0
knplabs/knp-menu-bundle Version ^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package kalamu/menu-service-bundle contains the following files

Loading the files please wait ....