You are here

BookSitemapDeriver.php in Sitemap 8.2

Same filename and directory in other branches
  1. 2.0.x src/Plugin/Derivative/BookSitemapDeriver.php

File

src/Plugin/Derivative/BookSitemapDeriver.php
View source
<?php

namespace Drupal\sitemap\Plugin\Derivative;

use Drupal\book\BookManagerInterface;
use Drupal\Component\Plugin\Derivative\DeriverBase;
use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * {@inheritdoc}
 */
class BookSitemapDeriver extends DeriverBase implements ContainerDeriverInterface {

  /**
   * The book manager.
   *
   * @var \Drupal\book\BookManagerInterface
   */
  protected $bookManager;

  /**
   * Constructs new SitemapBooks sitemap_map.
   *
   * @param \Drupal\book\BookManagerInterface $book_manager
   *   The book manager.
   */
  public function __construct(BookManagerInterface $book_manager) {
    $this->bookManager = $book_manager;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, $base_plugin_id) {
    if (\Drupal::moduleHandler()
      ->moduleExists('book')) {
      return new static($container
        ->get('book.manager'));
    }
  }

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    if (\Drupal::moduleHandler()
      ->moduleExists('book')) {
      foreach ($this->bookManager
        ->getAllBooks() as $id => $book) {
        $this->derivatives[$id] = $base_plugin_definition;
        $this->derivatives[$id]['title'] = t('Book: @book', [
          '@book' => $book['title'],
        ]);
        $this->derivatives[$id]['description'] = $book['type'];
        $this->derivatives[$id]['settings']['title'] = '';
        $this->derivatives[$id]['book'] = $id;
        $this->derivatives[$id]['config_dependencies']['config'] = [
          'book.settings',
        ];
      }
    }
    return $this->derivatives;
  }

}

Classes

Namesort descending Description
BookSitemapDeriver