BookBreadcrumbBuilder.php in Drupal 10
File
core/modules/book/src/BookBreadcrumbBuilder.php
View source
<?php
namespace Drupal\book;
use Drupal\Core\Breadcrumb\Breadcrumb;
use Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface;
use Drupal\Core\Entity\EntityRepositoryInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Language\LanguageInterface;
use Drupal\Core\Language\LanguageManagerInterface;
use Drupal\Core\Link;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Drupal\node\NodeInterface;
class BookBreadcrumbBuilder implements BreadcrumbBuilderInterface {
use StringTranslationTrait;
protected $nodeStorage;
protected $account;
protected $entityRepository;
protected $languageManager;
public function __construct(EntityTypeManagerInterface $entity_type_manager, AccountInterface $account, EntityRepositoryInterface $entity_repository, LanguageManagerInterface $language_manager) {
$this->nodeStorage = $entity_type_manager
->getStorage('node');
$this->account = $account;
$this->entityRepository = $entity_repository;
$this->languageManager = $language_manager;
}
public function applies(RouteMatchInterface $route_match) {
$node = $route_match
->getParameter('node');
return $node instanceof NodeInterface && !empty($node->book);
}
public function build(RouteMatchInterface $route_match) {
$book_nids = [];
$breadcrumb = new Breadcrumb();
$links = [
Link::createFromRoute($this
->t('Home'), '<front>', [], [
'language' => $this->languageManager
->getCurrentLanguage(LanguageInterface::TYPE_CONTENT),
]),
];
$breadcrumb
->addCacheContexts([
'languages:' . LanguageInterface::TYPE_CONTENT,
]);
$book = $route_match
->getParameter('node')->book;
$depth = 1;
while (!empty($book['p' . ($depth + 1)])) {
$book_nids[] = $book['p' . $depth];
$depth++;
}
$parent_books = $this->nodeStorage
->loadMultiple($book_nids);
$parent_books = array_map([
$this->entityRepository,
'getTranslationFromContext',
], $parent_books);
if (count($parent_books) > 0) {
$depth = 1;
while (!empty($book['p' . ($depth + 1)])) {
if (!empty($parent_books[$book['p' . $depth]]) && ($parent_book = $parent_books[$book['p' . $depth]])) {
$access = $parent_book
->access('view', $this->account, TRUE);
$breadcrumb
->addCacheableDependency($access);
if ($access
->isAllowed()) {
$breadcrumb
->addCacheableDependency($parent_book);
$links[] = $parent_book
->toLink();
}
}
$depth++;
}
}
$breadcrumb
->setLinks($links);
$breadcrumb
->addCacheContexts([
'route.book_navigation',
]);
return $breadcrumb;
}
}