You are here

protected function ConsentAgreementHtmlRouteProvider::getRevisionRevertRoute 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::getRevisionRevertRoute()
  2. 3.0.x modules/gdpr_consent/src/ConsentAgreementHtmlRouteProvider.php \Drupal\gdpr_consent\ConsentAgreementHtmlRouteProvider::getRevisionRevertRoute()

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

File

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

Class

ConsentAgreementHtmlRouteProvider
Provides routes for Consent Agreement entities.

Namespace

Drupal\gdpr_consent

Code

protected function getRevisionRevertRoute(EntityTypeInterface $entity_type) {
  if ($entity_type
    ->hasLinkTemplate('revision_revert')) {
    $route = new Route($entity_type
      ->getLinkTemplate('revision_revert'));
    $route
      ->setDefaults([
      '_form' => ConsentAgreementRevisionRevertForm::class,
      '_title' => 'Revert to earlier revision',
    ])
      ->setRequirement('_permission', 'revert all consent agreement revisions')
      ->setOption('_admin_route', TRUE);
    return $route;
  }
}