You are here

public function EasyEmailTypeHtmlRouteProvider::getRoutes in Easy Email 8

Same name and namespace in other branches
  1. 2.0.x src/EasyEmailTypeHtmlRouteProvider.php \Drupal\easy_email\EasyEmailTypeHtmlRouteProvider::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/EasyEmailTypeHtmlRouteProvider.php, line 20

Class

EasyEmailTypeHtmlRouteProvider
Provides routes for Email type entities.

Namespace

Drupal\easy_email

Code

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

  // Provide your custom entity routes here.
  return $collection;
}