You are here

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

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

File

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

Class

ConsentAgreementHtmlRouteProvider
Provides routes for Consent Agreement entities.

Namespace

Drupal\gdpr_consent

Code

protected function getRevisionDeleteRoute(EntityTypeInterface $entity_type) {
  if ($entity_type
    ->hasLinkTemplate('revision_delete')) {
    $route = new Route($entity_type
      ->getLinkTemplate('revision_delete'));
    $route
      ->setDefaults([
      '_form' => '\\Drupal\\gdpr_consent\\Form\\ConsentAgreementRevisionDeleteForm',
      '_title' => 'Delete earlier revision',
    ])
      ->setRequirement('_permission', 'delete all consent agreement revisions')
      ->setOption('_admin_route', TRUE);
    return $route;
  }
}