public BookManager::__construct(EntityManagerInterface $entity_manager, TranslationInterface $translation, ConfigFactoryInterface $config_factory, BookOutlineStorageInterface $book_outline_storage, RendererInterface $renderer)
Constructs a BookManager object.
File
- core/modules/book/src/BookManager.php, line 73
Class
- BookManager
- Defines a book manager.
Namespace
Drupal\book
Code
1 2 3 4 5 6 7 | public function __construct(EntityManagerInterface $entity_manager , TranslationInterface $translation , ConfigFactoryInterface $config_factory , BookOutlineStorageInterface $book_outline_storage , RendererInterface $renderer ) { $this ->entityManager = $entity_manager ; $this ->stringTranslation = $translation ; $this ->configFactory = $config_factory ; $this ->bookOutlineStorage = $book_outline_storage ; $this ->renderer = $renderer ; } |
Please login to continue.