function EntityModerationRouteProvider::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.
Overrides EntityRouteProviderInterface::getRoutes
File
- 
              core/
modules/ content_moderation/ src/ Entity/ Routing/ EntityModerationRouteProvider.php, line 54  
Class
- EntityModerationRouteProvider
 - Dynamic route provider for the Content moderation module.
 
Namespace
Drupal\content_moderation\Entity\RoutingCode
public function getRoutes(EntityTypeInterface $entity_type) {
  $collection = new RouteCollection();
  if ($moderation_route = $this->getLatestVersionRoute($entity_type)) {
    $entity_type_id = $entity_type->id();
    $collection->add("entity.{$entity_type_id}.latest_version", $moderation_route);
  }
  return $collection;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.