You are here

public function EntityRouteProviderInterface::getRoutes in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/Routing/EntityRouteProviderInterface.php \Drupal\Core\Entity\Routing\EntityRouteProviderInterface::getRoutes()
  2. 10 core/lib/Drupal/Core/Entity/Routing/EntityRouteProviderInterface.php \Drupal\Core\Entity\Routing\EntityRouteProviderInterface::getRoutes()

Provides routes for entities.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type

Return value

\Symfony\Component\Routing\RouteCollection|\Symfony\Component\Routing\Route[] Returns a route collection or an array of routes keyed by name, like route_callbacks inside 'routing.yml' files.

4 methods override EntityRouteProviderInterface::getRoutes()
DefaultHtmlRouteProvider::getRoutes in core/lib/Drupal/Core/Entity/Routing/DefaultHtmlRouteProvider.php
Provides routes for entities.
EntityModerationRouteProvider::getRoutes in core/modules/content_moderation/src/Entity/Routing/EntityModerationRouteProvider.php
Provides routes for entities.
NodeRouteProvider::getRoutes in core/modules/node/src/Entity/NodeRouteProvider.php
Provides routes for entities.
UserRouteProvider::getRoutes in core/modules/user/src/Entity/UserRouteProvider.php
Provides routes for entities.

File

core/lib/Drupal/Core/Entity/Routing/EntityRouteProviderInterface.php, line 22

Class

EntityRouteProviderInterface
Allows entity types to provide routes.

Namespace

Drupal\Core\Entity\Routing

Code

public function getRoutes(EntityTypeInterface $entity_type);