Download the PHP package asprega/breadcrumb-bundle without Composer
On this page you can find all versions of the php package asprega/breadcrumb-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download asprega/breadcrumb-bundle
More information about asprega/breadcrumb-bundle
Files in asprega/breadcrumb-bundle
Package breadcrumb-bundle
Short Description A bundle for generating dynamic breadcrumbs in Symfony applications
License MIT
Informations about the package breadcrumb-bundle
AndreaSpregaBreadcrumbBundle
WARNING: This bundle has been renamed and transferred to https://github.com/slope-it/breadcrumb-bundle
This bundle provides a way to create "dynamic" breadcrumbs in your Symfony applications.
Installation
Composer is the only supported installation method. Run the following to install the latest version from Packagist:
Or, if you prefer, you can require any version in your composer.json
:
NOTE: Until the bundle reaches version 1.0.0 I can't guarantee to follow semantic versioning strictly.
Usage
1. Load bundle
Once installed, load the bundle in your Kernel class:
2. Define breadcrumbs
There are two ways to create a breadcrumb: via code (1) or via annotations (2).
Via code: you can retrieve the breadcrumb builder in your controller and add breadcrumb items:
Via annotations: just use the @Breadcrumb
annotation at the class and/or method level. They will be merged (class comes first).
NOTE: The annotation can take either a single item (in the above example it's done at the class level) or multiple items (at the method level).
3. Render breadcrumb
The last step is to use the following Twig function wherever you want the breadcrumb printed in your template:
Regardless of the way you used to create the breadcrumb, the result will be something like:
In which the first two items are anchors and the last one is text only.
How the breadcrumb is generated
Under the hood, this is the business logic involved, for each item, in the breadcrumb generation:
label
will be the printed text. It can be either:- A "static" string (the translator will attempt to translate it by using it as a translation key)
- A special string, prepended with
$
. In this case, the breadcrumb label will be extracted from the variable passed to the template. Property paths can be used, e.g.:$variable.property.path
route
will be used to generate the url for the item anchor (if provided). If not provided, the item will not be clickable.params
will be used to generate the url related to the provided route. It's an associative array where each value can be either:- A "static" string
- A "special" string using the format
$variable.property.path
. The treatment is exactly the same as in "label". This is useful to dynamically retrieve url params (e.g. entity ID) starting from view variables.
translationDomain
will be used to translate the key provided in thelabel
attribute. Ifnull
, the default translation domain will be used. Providefalse
if you put a non-translatable string inlabel
and you don't want to use it as a translation key.
NOTE: you don't need to pass all the route parameters that are needed by route, as long as these route parameters are already present in the URL for the current request. In other words, if your breadcrumb hierarchical structure somehow "matches" your URL structure.
Example: suppose you have the following routes, with parameters and resulting URLs:
If you are in the action for route children_edit
and you want to generate a breadcrumb including all the above steps, you will be able to use the following annotation:
Note how you don't have to provide the route parameters (since the current request already has them all). It would work the same if you build it via code instead.
Override breadcrumb template
The bundle default template for rendering breadcrumb can be overridden by adding the following lines to the config.yml
of your application:
If you intend to do this, it's recommended to copy Resources/views/breadcrumb.html.twig
to your bundle and customize it.
However, in your template you'll just have to iterate over the items
variable to render your custom breadcrumb.
How to contribute
- Did you find and fix any bugs in the existing code?
- Do you want to contribute a new cool feature?
- Do you think documentation isn't good enough and you think you can improve it?
Under any of these circumstances, please fork this repo and create a pull request. I am more than happy to accept contributions!
Maintainer
All versions of breadcrumb-bundle with dependencies
doctrine/annotations Version ^1.0
symfony/framework-bundle Version ^4.0|^5.0
symfony/property-access Version ^4.0|^5.0
symfony/translation-contracts Version ^1.0|^2.0
twig/twig Version ^2.10|^3.0