class SystemBreadcrumbBlock

Same name and namespace in other branches
  1. 9 core/modules/system/src/Plugin/Block/SystemBreadcrumbBlock.php \Drupal\system\Plugin\Block\SystemBreadcrumbBlock
  2. 10 core/modules/system/src/Plugin/Block/SystemBreadcrumbBlock.php \Drupal\system\Plugin\Block\SystemBreadcrumbBlock
  3. 11.x core/modules/system/src/Plugin/Block/SystemBreadcrumbBlock.php \Drupal\system\Plugin\Block\SystemBreadcrumbBlock

Provides a block to display the breadcrumbs.

Plugin annotation


@Block(
  id = "system_breadcrumb_block",
  admin_label = @Translation("Breadcrumbs")
)

Hierarchy

Expanded class hierarchy of SystemBreadcrumbBlock

File

core/modules/system/src/Plugin/Block/SystemBreadcrumbBlock.php, line 19

Namespace

Drupal\system\Plugin\Block
View source
class SystemBreadcrumbBlock extends BlockBase implements ContainerFactoryPluginInterface {
    
    /**
     * The breadcrumb manager.
     *
     * @var \Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface
     */
    protected $breadcrumbManager;
    
    /**
     * The current route match.
     *
     * @var \Drupal\Core\Routing\RouteMatchInterface
     */
    protected $routeMatch;
    
    /**
     * Constructs a new SystemBreadcrumbBlock object.
     *
     * @param array $configuration
     *   A configuration array containing information about the plugin instance.
     * @param string $plugin_id
     *   The plugin_id for the plugin instance.
     * @param mixed $plugin_definition
     *   The plugin implementation definition.
     * @param \Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface $breadcrumb_manager
     *   The breadcrumb manager.
     * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
     *   The current route match.
     */
    public function __construct(array $configuration, $plugin_id, $plugin_definition, BreadcrumbBuilderInterface $breadcrumb_manager, RouteMatchInterface $route_match) {
        parent::__construct($configuration, $plugin_id, $plugin_definition);
        $this->breadcrumbManager = $breadcrumb_manager;
        $this->routeMatch = $route_match;
    }
    
    /**
     * {@inheritdoc}
     */
    public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
        return new static($configuration, $plugin_id, $plugin_definition, $container->get('breadcrumb'), $container->get('current_route_match'));
    }
    
    /**
     * {@inheritdoc}
     */
    public function build() {
        return $this->breadcrumbManager
            ->build($this->routeMatch)
            ->toRenderable();
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
SystemBreadcrumbBlock::$breadcrumbManager protected property The breadcrumb manager.
SystemBreadcrumbBlock::$routeMatch protected property The current route match.
SystemBreadcrumbBlock::build public function
SystemBreadcrumbBlock::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
SystemBreadcrumbBlock::__construct public function Constructs a new SystemBreadcrumbBlock object.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.