You are here

public function PanelsBreadcrumbBuilder::applies in Panels Breadcrumbs 8

Whether this breadcrumb builder should be used to build the breadcrumb.

Parameters

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

Return value

bool TRUE if this builder should be used or FALSE to let other builders decide.

Overrides BreadcrumbBuilderInterface::applies

File

src/Breadcrumb/PanelsBreadcrumbBuilder.php, line 76

Class

PanelsBreadcrumbBuilder
Class PanelsBreadcrumbBuilder.

Namespace

Drupal\panels_breadcrumbs\Breadcrumb

Code

public function applies(RouteMatchInterface $route_match) {
  return TRUE;
}