You are here

protected function ParagraphSetHtmlRouteProvider::getSettingsFormRoute in Paragraphs frontend ui 8

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

File

src/ParagraphSetHtmlRouteProvider.php, line 41

Class

ParagraphSetHtmlRouteProvider
Provides routes for Paragraph set entities.

Namespace

Drupal\paragraphs_frontend_ui

Code

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