Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. SystemBreadcrumbBlock.php

function SystemBreadcrumbBlock::__construct

Constructs a new SystemBreadcrumbBlock object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin ID for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface $breadcrumb_manager: The breadcrumb manager.

\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match.

Overrides BlockPluginTrait::__construct

File

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

Class

SystemBreadcrumbBlock
Provides a block to display the breadcrumbs.

Namespace

Drupal\system\Plugin\Block

Code

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;
}
RSS feed
Powered by Drupal