public function HttpConfigRequestHtmlRouteProvider::getRoutes in HTTP Client Manager 8
Same name and namespace in other branches
- 8.2 src/HttpConfigRequestHtmlRouteProvider.php \Drupal\http_client_manager\HttpConfigRequestHtmlRouteProvider::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/
HttpConfigRequestHtmlRouteProvider.php, line 20
Class
- HttpConfigRequestHtmlRouteProvider
- Provides routes for Http Config Request entities.
Namespace
Drupal\http_client_managerCode
public function getRoutes(EntityTypeInterface $entity_type) {
$collection = parent::getRoutes($entity_type);
$entity_type_id = $entity_type
->id();
if ($collection_route = $this
->getCollectionRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.collection", $collection_route);
}
if ($execute_route = $this
->getExecuteRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.execute", $execute_route);
}
return $collection;
}