BookManager::__construct

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

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;
}
doc_Drupal
2016-10-29 08:48:13
Comments
Leave a Comment

Please login to continue.