You are here

public function BookController::__construct in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/book/src/Controller/BookController.php \Drupal\book\Controller\BookController::__construct()
  2. 9 core/modules/book/src/Controller/BookController.php \Drupal\book\Controller\BookController::__construct()

Constructs a BookController object.

Parameters

\Drupal\book\BookManagerInterface $bookManager: The book manager.

\Drupal\book\BookExport $bookExport: The book export service.

\Drupal\Core\Render\RendererInterface $renderer: The renderer.

File

core/modules/book/src/Controller/BookController.php, line 53

Class

BookController
Controller routines for book routes.

Namespace

Drupal\book\Controller

Code

public function __construct(BookManagerInterface $bookManager, BookExport $bookExport, RendererInterface $renderer) {
  $this->bookManager = $bookManager;
  $this->bookExport = $bookExport;
  $this->renderer = $renderer;
}