Download the PHP package fgc/menu-bundle without Composer
On this page you can find all versions of the php package fgc/menu-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package menu-bundle
FGCMenuBundle
The FGCMenuBundle is a simple yet robust menu renderer for Symfony4.
The biggest change is the decision to remove Annotation Support. The feature made code handling difficult to manage, and chasing down menu items difficult. So centralising menu creation in configurations, and events.
Documentation
Installation
1. Download the bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
2. Enable the Bundle
Then, enable the bundle by adding the following line in the file of your project:
This is only needed if you don't have symfony/flex.
3. Configure the bundle
The bundle comes with a sensible default configuration, which is listed below. You can define these options if you need to change them:
Add Dynamic Menu Items
Follow the instructions to make
an event subscriber and listen for the DiscoverMenuEvent::NAME
event.
Here, you can $event->addMenuItem(Menu)
on the fly.
Make sure to remember to add group names.
And lastly:
Render the menus in your templates.
This renders:
And can be modified with additional parameters.
Templating the menu
I have a few templates I have needed already.
- default
- bootstrap4
- sb_admin_2
There are more coming, and can easily be overridden by adding them to your app/Resources directory.
Afterword
In v2, cache was attempted to be added, and while it saved the cache correctly, there are too many variables to chase down into to generate the cache key. I may try again, but not now.
Please feel free to submit issues so it can be improved.