You are here

protected function SplashifyGroupEntityHtmlRouteProvider::getSettingsFormRoute in Splashify 8.2

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

File

src/SplashifyGroupEntityHtmlRouteProvider.php, line 70

Class

SplashifyGroupEntityHtmlRouteProvider
Provides routes for Splashify group entity entities.

Namespace

Drupal\splashify

Code

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