public function NoteTypeHtmlRouteProvider::getRoutes in Drupal PM (Project Management) 4.x
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
- modules/
pm_note/ src/ NoteTypeHtmlRouteProvider.php, line 19
Class
- NoteTypeHtmlRouteProvider
- Provides routes for Note type entities.
Namespace
Drupal\pm_noteCode
public function getRoutes(EntityTypeInterface $entity_type) {
$collection = parent::getRoutes($entity_type);
// Provide your custom entity routes here.
return $collection;
}