function BookAdminEditForm::__construct
Same name in other branches
- 9 core/modules/book/src/Form/BookAdminEditForm.php \Drupal\book\Form\BookAdminEditForm::__construct()
- 8.9.x core/modules/book/src/Form/BookAdminEditForm.php \Drupal\book\Form\BookAdminEditForm::__construct()
- 10 core/modules/book/src/Form/BookAdminEditForm.php \Drupal\book\Form\BookAdminEditForm::__construct()
Constructs a new BookAdminEditForm.
Parameters
\Drupal\Core\Entity\EntityStorageInterface $node_storage: The content block storage.
\Drupal\book\BookManagerInterface $book_manager: The book manager.
\Drupal\Core\Entity\EntityRepositoryInterface $entity_repository: The entity repository service.
File
-
core/
modules/ book/ src/ Form/ BookAdminEditForm.php, line 55
Class
- BookAdminEditForm
- Provides a form for administering a single book's hierarchy.
Namespace
Drupal\book\FormCode
public function __construct(EntityStorageInterface $node_storage, BookManagerInterface $book_manager, EntityRepositoryInterface $entity_repository) {
$this->nodeStorage = $node_storage;
$this->bookManager = $book_manager;
$this->entityRepository = $entity_repository;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.