You are here

public function HomeboxHtmlRouteProvider::getRoutes in Homebox 8

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/HomeboxHtmlRouteProvider.php, line 19

Class

HomeboxHtmlRouteProvider
Provides routes for Homebox entities.

Namespace

Drupal\homebox

Code

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

  // @todo Unused class?
  // Provide your custom entity routes here.
  return $collection;
}