EntityRouteProviderSubscriber.php in Drupal 8
File
core/lib/Drupal/Core/EventSubscriber/EntityRouteProviderSubscriber.php
View source
<?php
namespace Drupal\Core\EventSubscriber;
use Drupal\Core\DependencyInjection\DeprecatedServicePropertyTrait;
use Drupal\Core\Entity\EntityManagerInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Routing\RouteBuildEvent;
use Drupal\Core\Routing\RoutingEvents;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\Routing\RouteCollection;
class EntityRouteProviderSubscriber implements EventSubscriberInterface {
use DeprecatedServicePropertyTrait;
protected $deprecatedProperties = [
'entityManager' => 'entity.manager',
];
protected $entityTypeManager;
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;
}
}
public function onDynamicRouteEvent(RouteBuildEvent $event) {
$route_collection = $event
->getRouteCollection();
foreach ($this->entityTypeManager
->getDefinitions() as $entity_type) {
if ($entity_type
->hasRouteProviders()) {
foreach ($this->entityTypeManager
->getRouteProviders($entity_type
->id()) as $route_provider) {
$routes = $route_provider
->getRoutes($entity_type);
if ($routes instanceof RouteCollection) {
$routes = $routes
->all();
}
foreach ($routes as $route_name => $route) {
if (!$route_collection
->get($route_name)) {
$route_collection
->add($route_name, $route);
}
}
}
}
}
}
public static function getSubscribedEvents() {
$events[RoutingEvents::DYNAMIC][] = [
'onDynamicRouteEvent',
];
return $events;
}
}