public function QueryEntityHtmlRouteProvider::getRoutes in Lightweight Directory Access Protocol (LDAP) 8.4
Same name and namespace in other branches
- 8.3 ldap_query/src/QueryEntityHtmlRouteProvider.php \Drupal\ldap_query\QueryEntityHtmlRouteProvider::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
- ldap_query/
src/ QueryEntityHtmlRouteProvider.php, line 19
Class
- QueryEntityHtmlRouteProvider
- Provides routes for LDAP Queries entities.
Namespace
Drupal\ldap_queryCode
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 ($add_form_route = $this
->getAddFormRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.add_form", $add_form_route);
}
return $collection;
}