public function OpignoActivityHtmlRouteProvider::getRoutes in Opigno module 8
Same name and namespace in other branches
- 3.x src/OpignoActivityHtmlRouteProvider.php \Drupal\opigno_module\OpignoActivityHtmlRouteProvider::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/
OpignoActivityHtmlRouteProvider.php, line 20
Class
- OpignoActivityHtmlRouteProvider
- Provides routes for Activity entities.
Namespace
Drupal\opigno_moduleCode
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 ($settings_form_route = $this
->getSettingsFormRoute($entity_type)) {
$collection
->add("{$entity_type_id}.settings", $settings_form_route);
}
if ($history_route = $this
->getHistoryRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.version_history", $history_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 ($revision_view_route = $this
->getRevisionViewRoute($entity_type)) {
$collection
->add("entity.{$entity_type_id}.revision-preview", $revision_view_route);
}
return $collection;
}