You are here

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

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

File

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

Class

ConsentAgreementHtmlRouteProvider
Provides routes for Consent Agreement entities.

Namespace

Drupal\gdpr_consent

Code

protected function getRevisionTranslationRevertRoute(EntityTypeInterface $entity_type) {
  if ($entity_type
    ->hasLinkTemplate('translation_revert')) {
    $route = new Route($entity_type
      ->getLinkTemplate('translation_revert'));
    $route
      ->setDefaults([
      '_form' => '\\Drupal\\gdpr_consent\\Form\\ConsentAgreementRevisionRevertTranslationForm',
      '_title' => 'Revert to earlier revision of a translation',
    ])
      ->setRequirement('_permission', 'revert all consent agreement revisions')
      ->setOption('_admin_route', TRUE);
    return $route;
  }
}