public function TMGMTLocalBreadcrumbBuilder::build in Translation Management Tool 8
Builds the breadcrumb.
Parameters
\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match.
Return value
\Drupal\Core\Breadcrumb\Breadcrumb A breadcrumb.
Overrides BreadcrumbBuilderInterface::build
File
- translators/
tmgmt_local/ src/ Menu/ TMGMTLocalBreadcrumbBuilder.php, line 33
Class
- TMGMTLocalBreadcrumbBuilder
- A custom Local task item breadcrumb builder.
Namespace
Drupal\tmgmt_local\MenuCode
public function build(RouteMatchInterface $route_match) {
$breadcrumb = new Breadcrumb();
$breadcrumb
->addLink(Link::createFromRoute($this
->t('Home'), '<front>'));
$breadcrumb
->addCacheContexts([
'route',
]);
// Add links to administration, and translation to the breadcrumb.
if (\Drupal::config('tmgmt_local.settings')
->get('use_admin_theme') || strpos($route_match
->getRouteObject()
->getPath(), '/manage-translate') === 0) {
$breadcrumb
->addLink(Link::createFromRoute($this
->t('Administration'), 'system.admin'));
$breadcrumb
->addLink(Link::createFromRoute($this
->t('Translation'), 'tmgmt.admin_tmgmt'));
}
if ($route_match
->getParameter('tmgmt_local_task') instanceof LocalTaskInterface || $route_match
->getParameter('tmgmt_local_task_item') instanceof LocalTaskItemInterface) {
$breadcrumb
->addLink(Link::createFromRoute($this
->t('Local Tasks'), 'view.tmgmt_local_task_overview.unassigned'));
if ($route_match
->getParameter('tmgmt_local_task_item') instanceof LocalTaskItemInterface) {
/** @var LocalTaskItemInterface $local_task_item */
$local_task_item = $route_match
->getParameter('tmgmt_local_task_item');
$breadcrumb
->addCacheableDependency($local_task_item);
$breadcrumb
->addLink(Link::createFromRoute($local_task_item
->getTask()
->label(), 'entity.tmgmt_local_task.canonical', array(
'tmgmt_local_task' => $local_task_item
->getTask()
->id(),
)));
}
}
return $breadcrumb;
}