You are here

public function PetHtmlRouteProvider::getRoutes in Previewable email templates 8

Same name and namespace in other branches
  1. 8.4 src/PetHtmlRouteProvider.php \Drupal\pet\PetHtmlRouteProvider::getRoutes()
  2. 8.3 src/PetHtmlRouteProvider.php \Drupal\pet\PetHtmlRouteProvider::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 DefaultHtmlRouteProvider::getRoutes

File

src/PetHtmlRouteProvider.php, line 19

Class

PetHtmlRouteProvider
Provides routes for PET entities.

Namespace

Drupal\pet

Code

public function getRoutes(EntityTypeInterface $entity_type) {
  $collection = parent::getRoutes($entity_type);
  return $collection;
}