public function BreadcrumbManager::applies in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Breadcrumb/BreadcrumbManager.php \Drupal\Core\Breadcrumb\BreadcrumbManager::applies()
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
- core/
lib/ Drupal/ Core/ Breadcrumb/ BreadcrumbManager.php, line 65
Class
- BreadcrumbManager
- Provides a breadcrumb manager.
Namespace
Drupal\Core\BreadcrumbCode
public function applies(RouteMatchInterface $route_match) {
return TRUE;
}