You are here

protected function HeartbeatStreamHtmlRouteProvider::getRevisionRoute in Heartbeat 8

Gets the revision 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 HeartbeatStreamHtmlRouteProvider::getRevisionRoute()
HeartbeatStreamHtmlRouteProvider::getRoutes in src/HeartbeatStreamHtmlRouteProvider.php
Provides routes for entities.

File

src/HeartbeatStreamHtmlRouteProvider.php, line 110

Class

HeartbeatStreamHtmlRouteProvider
Provides routes for Heartbeat stream entities.

Namespace

Drupal\heartbeat

Code

protected function getRevisionRoute(EntityTypeInterface $entity_type) {
  if ($entity_type
    ->hasLinkTemplate('revision')) {
    $route = new Route($entity_type
      ->getLinkTemplate('revision'));
    $route
      ->setDefaults([
      '_controller' => '\\Drupal\\heartbeat\\Controller\\HeartbeatStreamController::revisionShow',
      '_title_callback' => '\\Drupal\\heartbeat\\Controller\\HeartbeatStreamController::revisionPageTitle',
    ])
      ->setRequirement('_permission', 'access heartbeat stream revisions')
      ->setOption('_admin_route', TRUE);
    return $route;
  }
}