public function DataPolicyHtmlRouteProvider::getRoutes in Data Policy 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/
DataPolicyHtmlRouteProvider.php, line 20
Class
- DataPolicyHtmlRouteProvider
- Provides routes for Data policy entities.
Namespace
Drupal\data_policyCode
public function getRoutes(EntityTypeInterface $entity_type) {
$collection = parent::getRoutes($entity_type);
$entity_type_id = $entity_type
->id();
if ($history_route = $this
->getHistoryRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.version_history", $history_route);
}
if ($revision_route = $this
->getRevisionRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.revision", $revision_route);
}
if ($edit_route = $this
->getRevisionEditRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.revision_edit", $edit_route);
}
if ($revert_route = $this
->getRevisionRevertRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.revision_revert", $revert_route);
}
if ($delete_route = $this
->getRevisionDeleteRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.revision_delete", $delete_route);
}
if ($translation_route = $this
->getRevisionTranslationRevertRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.translation_revert", $translation_route);
}
return $collection;
}