Download the PHP package bw/active-menu-item-bundle without Composer

On this page you can find all versions of the php package bw/active-menu-item-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 active-menu-item-bundle

ActiveMenuItemBundle

The bundle provides a few simple Twig filters and functions that help to highlight current active menu items of simple HTML menu in Twig templates by adding specific CSS classes.

How to Install

Install the bundle with Composer:

Then, to use filters and functions in Twig, register this bundle in bundles.php:

But if you use Symfony Flex - it was already done automatically for you :)

How to Use

To check whether the menu item route is active, simply use is_active Twig filter:

`

Or use is_active_uri Twig filter for check if menu item's request URI is active:

If the route or the request URI is matched, filters return current active string that you will need to use in class attribute of the menu item tag. Then, all you need to do is add your custom CSS rules for those classes in your stylesheets.

How to Use with Multi-level Nested Menu

To check an array of possible routes use is_active() Twig function where pass an array of routes (all submenu item route names of the current item) as the first argument and the current item route name as the second one.

For example, there is a simple HTML menu with nested submenu:

If the current route is subcategory1_route_name, it will have current active class and its parent item - all_categories_route_name route - will have only active class.

And same for request URIs with is_active_uri() Twig function, but instead of passing an array of routes, pass an array of URIs.

Demo

This bundle has a demo page with an example of simple multi-level HTML menu. Create the next file to see the demo in dev Symfony mode:

Then, run Symfony's built-in web server with symfony serve and go to: https://localhost:8000/bw/demo/active-menu-item/index.

Under the Hood

There are only a few simple Twig filters and functions, that's it!

Simple, isn't it? :)


All versions of active-menu-item-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
symfony/framework-bundle Version ^4.4|^5.4|^6.0|^7.0
symfony/twig-bundle Version ^4.4|^5.4|^6.0|^7.0
twig/twig Version ^2.0|^3.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 bw/active-menu-item-bundle contains the following files

Loading the files please wait ....