You are here

public function EntityTypeManager::getRouteProviders in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/EntityTypeManager.php \Drupal\Core\Entity\EntityTypeManager::getRouteProviders()

Gets all route provider instances.

Parameters

string $entity_type: The entity type for this route providers.

Return value

\Drupal\Core\Entity\Routing\EntityRouteProviderInterface[]

Overrides EntityTypeManagerInterface::getRouteProviders

File

core/lib/Drupal/Core/Entity/EntityTypeManager.php, line 204
Contains \Drupal\Core\Entity\EntityTypeManager.

Class

EntityTypeManager
Manages entity type plugin definitions.

Namespace

Drupal\Core\Entity

Code

public function getRouteProviders($entity_type) {
  if (!isset($this->handlers['route_provider'][$entity_type])) {
    $route_provider_classes = $this
      ->getDefinition($entity_type, TRUE)
      ->getRouteProviderClasses();
    foreach ($route_provider_classes as $type => $class) {
      $this->handlers['route_provider'][$entity_type][$type] = $this
        ->createHandlerInstance($class, $this
        ->getDefinition($entity_type));
    }
  }
  return isset($this->handlers['route_provider'][$entity_type]) ? $this->handlers['route_provider'][$entity_type] : [];
}