protected function InvoiceHtmlRouteProvider::getRevisionRevertRoute in Drupal PM (Project Management) 4.x
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 InvoiceHtmlRouteProvider::getRevisionRevertRoute()
- InvoiceHtmlRouteProvider::getRoutes in modules/pm_invoice/ src/ InvoiceHtmlRouteProvider.php 
- Provides routes for entities.
File
- modules/pm_invoice/ src/ InvoiceHtmlRouteProvider.php, line 105 
Class
- InvoiceHtmlRouteProvider
- Provides routes for Invoice entities.
Namespace
Drupal\pm_invoiceCode
protected function getRevisionRevertRoute(EntityTypeInterface $entity_type) {
  if ($entity_type
    ->hasLinkTemplate('revision_revert')) {
    $route = new Route($entity_type
      ->getLinkTemplate('revision_revert'));
    $route
      ->setDefaults([
      '_form' => '\\Drupal\\pm_invoice\\Form\\InvoiceRevisionRevertForm',
      '_title' => 'Revert to earlier revision',
    ])
      ->setRequirement('_permission', 'revert all invoice revisions')
      ->setOption('_admin_route', TRUE);
    return $route;
  }
}