function NodePreviewController::__construct
Creates a NodeViewController object.
Parameters
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.
\Drupal\Core\Render\RendererInterface $renderer: The renderer service.
\Drupal\Core\Entity\EntityRepositoryInterface $entity_repository: The entity repository.
Overrides EntityViewController::__construct
File
-
core/
modules/ node/ src/ Controller/ NodePreviewController.php, line 34
Class
- NodePreviewController
- Defines a controller to render a single node in preview.
Namespace
Drupal\node\ControllerCode
public function __construct(EntityTypeManagerInterface $entity_type_manager, RendererInterface $renderer, EntityRepositoryInterface $entity_repository) {
parent::__construct($entity_type_manager, $renderer);
$this->entityRepository = $entity_repository;
}