for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\SeoBundle\Block\Breadcrumb;
use Sonata\BlockBundle\Block\BlockContextInterface;
/**
* BlockService for homepage breadcrumb.
* @author Sylvain Deloux <[email protected]>
class HomepageBreadcrumbBlockService extends BaseBreadcrumbMenuBlockService
{
* {@inheritdoc}
public function getName()
return 'Breadcrumb (Homepage)';
}
protected function getMenu(BlockContextInterface $blockContext)
$menu = $this->getRootMenu($blockContext);
return $menu;