You are here

protected function PetHtmlRouteProvider::getSettingsFormRoute in Previewable email templates 8.3

Gets the settings form 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 PetHtmlRouteProvider::getSettingsFormRoute()
PetHtmlRouteProvider::getRoutes in src/PetHtmlRouteProvider.php
Provides routes for entities.

File

src/PetHtmlRouteProvider.php, line 250

Class

PetHtmlRouteProvider
Provides routes for pet entities.

Namespace

Drupal\pet

Code

protected function getSettingsFormRoute(EntityTypeInterface $entity_type) {
  if (!$entity_type
    ->getBundleEntityType()) {
    $route = new Route("/admin/config/system/{$entity_type->id()}/settings");
    $route
      ->setDefaults([
      '_form' => 'Drupal\\pet\\Form\\PetSettingsForm',
      '_title' => "{$entity_type->getLabel()} settings",
    ])
      ->setRequirement('_permission', $entity_type
      ->getAdminPermission())
      ->setOption('_admin_route', TRUE);
    return $route;
  }
}