public BookController::__construct(BookManagerInterface $bookManager, BookExport $bookExport, RendererInterface $renderer)
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 52
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;
}
Please login to continue.