yceruto/breadcrumbs-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.

Friendly breadcrumbs for Symfony applications.

Installs: 1 035

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 2

Forks: 3

Open Issues: 0

Type:symfony-bundle

1.0.7 2016-02-01 01:25 UTC

This package is auto-updated.

Last update: 2022-07-11 09:21:22 UTC


README

Build Status Scrutinizer Code Quality Coverage Status Packagist Version Packagist Download SensioLabsInsight SUPPORTS SYMFONY 2.x and 3.x

A friendly way to create breadcrumbs for symfony applications.

Features

  • Build breadcrumbs through current request uri (default).
  • Customize breadcrumbs nodes.
  • Customize breadcrumbs template.

Installation

Step 1: Download the Bundle

$ composer require yceruto/breadcrumbs-bundle

This command requires you to have Composer installed globally, as explained in the Composer documentation.

Step 2: Enable the Bundle

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Yceruto\Bundle\BreadcrumbsBundle\BreadcrumbsBundle(),
        );
    }

    // ...
}

Basic Usage

Render the breadcrumbs in your template

Render the breadcrumb through current request path info.

{# app/Resources/views/base.html.twig #}

{{ render_breadcrumbs() }}

That's it!

How it work

Suppose you the follows routes and translation:

# app/config/routing.yml

_index:
	path: /
	defaults: { _controller: ... }
	
_store:
	path: /store
	defaults: { _controller: ... }
	
_category:
	path: /store/{category}
	defaults: { _controller: ... }
	
_category_product:
	path: /store/{category}/{product}
	defaults: { _controller: ... }
# app/Resources/translations/messages.en.yml

breadcrumbs._index: Home

For this request path /store/foo/bar the render_breadcrumbs() function returns:

<ol class="breadcrumb">
    <li><a href="/">Home</a></li>
    <li><a href="/store">Store</a></li>
    <li><a href="/store/foo">Foo</a></li>
    <li class="active">Bar</li>
</ol>

If your application does not use translation feature, you can set the label text in route definition:

_index:
	path: /
	defaults: { _controller: ..., breadcrumbs_label: 'Home' }

Translate the Breadcrumbs Interface

The breadcrumbs uses the same language as the underlying Symfony application, which is usually configured in the locale option of the app/config/parameters.yml file.

The strings that belong to the breadcrumbs interface are translated using the default messages domain.

In addition, make sure that the translator service is enabled in the application (projects based on the Symfony Standard Edition have it disabled by default):

# app/config/config.yml
framework:
    translator: { fallbacks: [ "%locale%" ] }

Advanced Usage

Customize the breadcrumb nodes

public function indexAction() 
{
	$breadcrumbs = $this->get('breadcrumbs_builder')->create();
	$breadcrumbs->add('/', 'home');
	
	// or
	
	$node = new BreadcrumbsNode();
	$node->setPath('/')
	$node->setLabel('home')
	$breadcrumbs->addNode($node);
	
	return $this->render('index.html.twig', array('custom_breadcrumbs' => $breadcrumbs))
}

Render customized breadcrumbs:

{{ render_breadcrumbs(custom_breadcrumbs) }}

Overriding Default BreadcrumbsBundle Template

As you start to incorporate BreadcrumbsBundle into your application, you will probably find that you need to override the default template that is provided by the bundle. Although the template name is not configurable, the Symfony framework provides two ways to override the templates of a bundle.

  1. Define a new template of the same name in the app/Resources directory
  2. Create a new bundle that is defined as a child of BreadcrumbsBundle

Example: Overriding The Default breadcrumbs.html.twig

An example of overriding this breadcrumbs template is demonstrated below using first of the overriding options listed above.

Here is the default breadcrumbs.html.twig provided by the BreadcrumbsBundle:

<ol class="breadcrumb">
    {% for node in breadcrumbs %}
        {% if not loop.last %}
            <li><a href="{{ node.path }}">{{ node.label|trans|title }}</a></li>
        {% else %}
            <li class="active">{{ node.label|trans|title }}</li>
        {% endif %}
    {% endfor %}
</ol>

The following Twig template file is an example of a breadcrumbs file that might be used to override the provided by the bundle.

<ol class="breadcrumb">
    {% for node in breadcrumbs %}
        {% set icon = loop.first ? '<i class="fa fa-home"></i>' %}
        
        {% if not loop.last %}
            <li><a href="{{ node.path }}">{{ icon|raw }}{{ node.label|trans|title }}</a></li>
        {% else %}
            <li class="active">{{ icon|raw }}{{ node.label|trans|title }}</li>
        {% endif %}
    {% endfor %}
</ol>

1) Define New Template In app/Resources

The easiest way to override a bundle's template is to simply place a new one in your app/Resources folder. To override the breadcrumbs template located at Resources/views/breadcrumbs.html.twig in the BreadcrumbsBundle directory, you would place your new breadcrumbs template at app/Resources/BreadcrumbsBundle/views/breadcrumbs.html.twig.

As you can see the pattern for overriding templates in this way is to create a folder with the name of the bundle class in the app/Resources directory. Then add your new template to this folder, preserving the directory structure from the original bundle.

Resources

You can run the unit tests with the following command:

$ cd path/to/breadcrumbs-bundle/
$ composer install
$ phpunit

License

This software is published under the MIT License