You are here

protected function ConsentAgreementHtmlRouteProvider::getRevisionRoute in General Data Protection Regulation 8

Same name and namespace in other branches
  1. 8.2 modules/gdpr_consent/src/ConsentAgreementHtmlRouteProvider.php \Drupal\gdpr_consent\ConsentAgreementHtmlRouteProvider::getRevisionRoute()
  2. 3.0.x modules/gdpr_consent/src/ConsentAgreementHtmlRouteProvider.php \Drupal\gdpr_consent\ConsentAgreementHtmlRouteProvider::getRevisionRoute()

Gets the revision route.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type.

Return value

\Symfony\Component\Routing\Route|null The generated route, if available.

1 call to ConsentAgreementHtmlRouteProvider::getRevisionRoute()
ConsentAgreementHtmlRouteProvider::getRoutes in modules/gdpr_consent/src/ConsentAgreementHtmlRouteProvider.php
Provides routes for entities.

File

modules/gdpr_consent/src/ConsentAgreementHtmlRouteProvider.php, line 86

Class

ConsentAgreementHtmlRouteProvider
Provides routes for Consent Agreement entities.

Namespace

Drupal\gdpr_consent

Code

protected function getRevisionRoute(EntityTypeInterface $entity_type) {
  if ($entity_type
    ->hasLinkTemplate('revision')) {
    $route = new Route($entity_type
      ->getLinkTemplate('revision'));
    $route
      ->setDefaults([
      '_controller' => '\\Drupal\\gdpr_consent\\Controller\\ConsentAgreementController::revisionShow',
      '_title_callback' => '\\Drupal\\gdpr_consent\\Controller\\ConsentAgreementController::revisionPageTitle',
    ])
      ->setRequirement('_permission', 'access consent agreement revisions')
      ->setOption('_admin_route', TRUE);
    return $route;
  }
}