You are here

public function EntityModerationRouteProvider::getRoutes in Workbench Moderation 8

Same name and namespace in other branches
  1. 8.2 src/Routing/EntityModerationRouteProvider.php \Drupal\workbench_moderation\Routing\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

src/Routing/EntityModerationRouteProvider.php, line 51

Class

EntityModerationRouteProvider
Provides the following routes:.

Namespace

Drupal\workbench_moderation\Routing

Code

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;
}