You are here

protected function ConsentAgreementHtmlRouteProvider::getHistoryRoute in General Data Protection Regulation 8.2

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

Gets the version history 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::getHistoryRoute()
ConsentAgreementHtmlRouteProvider::getRoutes in modules/gdpr_consent/src/ConsentAgreementHtmlRouteProvider.php
Provides routes for entities.

File

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

Class

ConsentAgreementHtmlRouteProvider
Provides routes for Consent Agreement entities.

Namespace

Drupal\gdpr_consent

Code

protected function getHistoryRoute(EntityTypeInterface $entity_type) {
  if ($entity_type
    ->hasLinkTemplate('version-history')) {
    $route = new Route($entity_type
      ->getLinkTemplate('version-history'));
    $route
      ->setDefaults([
      '_title' => "{$entity_type->getLabel()} revisions",
      '_controller' => '\\Drupal\\gdpr_consent\\Controller\\ConsentAgreementController::revisionOverview',
    ])
      ->setRequirement('_permission', 'access consent agreement revisions')
      ->setOption('_admin_route', TRUE);
    return $route;
  }
}