public function ConsentAgreementHtmlRouteProvider::getRoutes in General Data Protection Regulation 8
Same name and namespace in other branches
- 8.2 modules/gdpr_consent/src/ConsentAgreementHtmlRouteProvider.php \Drupal\gdpr_consent\ConsentAgreementHtmlRouteProvider::getRoutes()
 - 3.0.x modules/gdpr_consent/src/ConsentAgreementHtmlRouteProvider.php \Drupal\gdpr_consent\ConsentAgreementHtmlRouteProvider::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
- modules/
gdpr_consent/ src/ ConsentAgreementHtmlRouteProvider.php, line 21  
Class
- ConsentAgreementHtmlRouteProvider
 - Provides routes for Consent Agreement entities.
 
Namespace
Drupal\gdpr_consentCode
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 ($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_type_id}.revision_revert_translation_confirm", $translation_route);
  }
  if ($settings_form_route = $this
    ->getSettingsFormRoute($entity_type)) {
    $collection
      ->add("{$entity_type_id}.settings", $settings_form_route);
  }
  return $collection;
}