View source
<?php
namespace Drupal\book\Plugin\Block;
use Drupal\Core\Block\BlockBase;
use Drupal\book\BookManagerInterface;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\node\NodeInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\RequestStack;
use Drupal\Core\Entity\EntityStorageInterface;
class BookNavigationBlock extends BlockBase implements ContainerFactoryPluginInterface {
protected $requestStack;
protected $bookManager;
protected $nodeStorage;
public function __construct(array $configuration, $plugin_id, $plugin_definition, RequestStack $request_stack, BookManagerInterface $book_manager, EntityStorageInterface $node_storage) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->requestStack = $request_stack;
$this->bookManager = $book_manager;
$this->nodeStorage = $node_storage;
}
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('request_stack'), $container
->get('book.manager'), $container
->get('entity_type.manager')
->getStorage('node'));
}
public function defaultConfiguration() {
return [
'block_mode' => "all pages",
];
}
public function blockForm($form, FormStateInterface $form_state) {
$options = [
'all pages' => $this
->t('Show block on all pages'),
'book pages' => $this
->t('Show block only on book pages'),
];
$form['book_block_mode'] = [
'#type' => 'radios',
'#title' => $this
->t('Book navigation block display'),
'#options' => $options,
'#default_value' => $this->configuration['block_mode'],
'#description' => $this
->t("If <em>Show block on all pages</em> is selected, the block will contain the automatically generated menus for all of the site's books. If <em>Show block only on book pages</em> is selected, the block will contain only the one menu corresponding to the current page's book. In this case, if the current page is not in a book, no block will be displayed. The <em>Page specific visibility settings</em> or other visibility settings can be used in addition to selectively display this block."),
];
return $form;
}
public function blockSubmit($form, FormStateInterface $form_state) {
$this->configuration['block_mode'] = $form_state
->getValue('book_block_mode');
}
public function build() {
$current_bid = 0;
if ($node = $this->requestStack
->getCurrentRequest()
->get('node')) {
$current_bid = empty($node->book['bid']) ? 0 : $node->book['bid'];
}
if ($this->configuration['block_mode'] == 'all pages') {
$book_menus = [];
$pseudo_tree = [
0 => [
'below' => FALSE,
],
];
foreach ($this->bookManager
->getAllBooks() as $book_id => $book) {
if ($book['bid'] == $current_bid) {
$data = $this->bookManager
->bookTreeAllData($node->book['bid'], $node->book);
$book_menus[$book_id] = $this->bookManager
->bookTreeOutput($data);
}
else {
$book['in_active_trail'] = FALSE;
$book_node = $this->nodeStorage
->load($book['nid']);
$book['access'] = $book_node
->access('view');
$pseudo_tree[0]['link'] = $book;
$book_menus[$book_id] = $this->bookManager
->bookTreeOutput($pseudo_tree);
}
$book_menus[$book_id] += [
'#book_title' => $book['title'],
];
}
if ($book_menus) {
return [
'#theme' => 'book_all_books_block',
] + $book_menus;
}
}
elseif ($current_bid) {
$nid = \Drupal::entityQuery('node')
->condition('nid', $node->book['bid'], '=')
->condition('status', NodeInterface::PUBLISHED)
->execute();
if ($nid) {
$tree = $this->bookManager
->bookTreeAllData($node->book['bid'], $node->book);
$data = array_shift($tree);
$below = $this->bookManager
->bookTreeOutput($data['below']);
if (!empty($below)) {
return $below;
}
}
}
return [];
}
public function getCacheContexts() {
return Cache::mergeContexts(parent::getCacheContexts(), [
'route.book_navigation',
]);
}
public function getCacheMaxAge() {
return 0;
}
}