You are here

protected function DeveloperAppRouteProvider::getRevokeApiKeyRoute in Apigee Edge 8

Gets the revoke-api-key-form route for a developer app.

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

File

src/Entity/DeveloperAppRouteProvider.php, line 296

Class

DeveloperAppRouteProvider
Default entity routes for developer apps.

Namespace

Drupal\apigee_edge\Entity

Code

protected function getRevokeApiKeyRoute(EntityTypeInterface $entity_type) {
  if ($entity_type
    ->hasLinkTemplate('revoke-api-key-form')) {
    $route = new Route($entity_type
      ->getLinkTemplate('revoke-api-key-form'));
    $route
      ->setDefault('_form', DeveloperAppApiKeyRevokeForm::class);
    $route
      ->setDefault('entity_type_id', $entity_type
      ->id());
    $this
      ->ensureUserParameter($route);
    $route
      ->setRequirement('_app_access_check_by_app_name', 'revoke_api_key');
    return $route;
  }
}