You are here

public function EntityRouteProviderSubscriber::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/EventSubscriber/EntityRouteProviderSubscriber.php \Drupal\Core\EventSubscriber\EntityRouteProviderSubscriber::__construct()

Constructs a new EntityRouteProviderSubscriber instance.

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager service.

File

core/lib/Drupal/Core/EventSubscriber/EntityRouteProviderSubscriber.php, line 37

Class

EntityRouteProviderSubscriber
Ensures that routes can be provided by entity types.

Namespace

Drupal\Core\EventSubscriber

Code

public function __construct(EntityTypeManagerInterface $entity_type_manager) {
  if ($entity_type_manager instanceof EntityManagerInterface) {
    @trigger_error('Passing the entity.manager service to EntityRouteProviderSubscriber::__construct() is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Pass the new dependencies instead. See https://www.drupal.org/node/2549139.', E_USER_DEPRECATED);
    $this->entityTypeManager = \Drupal::entityTypeManager();
  }
  else {
    $this->entityTypeManager = $entity_type_manager;
  }
}