You are here

interface BreadcrumbBuilderInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Breadcrumb/BreadcrumbBuilderInterface.php \Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface

Defines an interface for classes that build breadcrumbs.

Hierarchy

Expanded class hierarchy of BreadcrumbBuilderInterface

All classes that implement BreadcrumbBuilderInterface

6 files declare their use of BreadcrumbBuilderInterface
BookBreadcrumbBuilder.php in core/modules/book/src/BookBreadcrumbBuilder.php
Contains \Drupal\book\BookBreadcrumbBuilder.
CommentBreadcrumbBuilder.php in core/modules/comment/src/CommentBreadcrumbBuilder.php
Contains \Drupal\comment\CommentBreadcrumbBuilder.
ForumBreadcrumbBuilderBase.php in core/modules/forum/src/Breadcrumb/ForumBreadcrumbBuilderBase.php
Contains \Drupal\forum\Breadcrumb\ForumBreadcrumbBuilderBase.
PathBasedBreadcrumbBuilder.php in core/modules/system/src/PathBasedBreadcrumbBuilder.php
Contains \Drupal\system\PathBasedBreadcrumbBuilder.
SystemBreadcrumbBlock.php in core/modules/system/src/Plugin/Block/SystemBreadcrumbBlock.php
Contains \Drupal\system\Plugin\Block\SystemBreadcrumbBlock.

... See full list

File

core/lib/Drupal/Core/Breadcrumb/BreadcrumbBuilderInterface.php, line 15
Contains \Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface.

Namespace

Drupal\Core\Breadcrumb
View source
interface BreadcrumbBuilderInterface {

  /**
   * Whether this breadcrumb builder should be used to build the breadcrumb.
   *
   * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
   *   The current route match.
   *
   * @return bool
   *   TRUE if this builder should be used or FALSE to let other builders
   *   decide.
   */
  public function applies(RouteMatchInterface $route_match);

  /**
   * Builds the breadcrumb.
   *
   * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
   *   The current route match.
   *
   * @return \Drupal\Core\Breadcrumb\Breadcrumb
   *   A breadcrumb.
   */
  public function build(RouteMatchInterface $route_match);

}

Members

Namesort descending Modifiers Type Description Overrides
BreadcrumbBuilderInterface::applies public function Whether this breadcrumb builder should be used to build the breadcrumb. 7
BreadcrumbBuilderInterface::build public function Builds the breadcrumb. 6