You are here

protected function InvoiceHtmlRouteProvider::getSettingsFormRoute in Drupal PM (Project Management) 4.x

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

File

modules/pm_invoice/src/InvoiceHtmlRouteProvider.php, line 153

Class

InvoiceHtmlRouteProvider
Provides routes for Invoice entities.

Namespace

Drupal\pm_invoice

Code

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