You are here

protected function DeveloperAppRouteProvider::getCanonicalRouteByDeveloper in Apigee Edge 8

Gets the canonical route for a developer.

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 DeveloperAppRouteProvider::getCanonicalRouteByDeveloper()
DeveloperAppRouteProvider::getRoutes in src/Entity/DeveloperAppRouteProvider.php
Provides routes for entities.

File

src/Entity/DeveloperAppRouteProvider.php, line 192

Class

DeveloperAppRouteProvider
Default entity routes for developer apps.

Namespace

Drupal\apigee_edge\Entity

Code

protected function getCanonicalRouteByDeveloper(EntityTypeInterface $entity_type) {
  if ($entity_type
    ->hasLinkTemplate('canonical-by-developer')) {
    $route = new Route($entity_type
      ->getLinkTemplate('canonical-by-developer'));
    $route
      ->setDefault('_controller', DeveloperAppViewControllerForDeveloper::class . '::view');
    $route
      ->setDefault('_title_callback', AppTitleProvider::class . ':title');
    $route
      ->setDefault('entity_type_id', $entity_type
      ->id());
    $this
      ->ensureUserParameter($route);
    $route
      ->setRequirement('_app_access_check_by_app_name', 'view');
    return $route;
  }
}