public function SystemBreadcrumbBlock::__construct in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/src/Plugin/Block/SystemBreadcrumbBlock.php \Drupal\system\Plugin\Block\SystemBreadcrumbBlock::__construct()
- 10 core/modules/system/src/Plugin/Block/SystemBreadcrumbBlock.php \Drupal\system\Plugin\Block\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 49
Class
- SystemBreadcrumbBlock
- Provides a block to display the breadcrumbs.
Namespace
Drupal\system\Plugin\BlockCode
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;
}