public BookOutline::__construct(BookManagerInterface $book_manager)
Constructs a new BookOutline.
Parameters
\Drupal\book\BookManagerInterface $book_manager: The book manager.
File
- core/modules/book/src/BookOutline.php, line 23
Class
- BookOutline
- Provides handling to render the book outline.
Namespace
Drupal\book
Code
public function __construct(BookManagerInterface $book_manager) {
$this->bookManager = $book_manager;
}
Please login to continue.