You are here

protected function LogHtmlRouteProvider::getAddPageRoute in Log entity 8

Gets the add page route.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type.

Return value

\Symfony\Component\Routing\Route|null The generated route, if available.

Overrides AdminHtmlRouteProvider::getAddPageRoute

1 call to LogHtmlRouteProvider::getAddPageRoute()
LogHtmlRouteProvider::getRoutes in src/LogHtmlRouteProvider.php
Provides routes for entities.

File

src/LogHtmlRouteProvider.php, line 112

Class

LogHtmlRouteProvider
Provides routes for Log entities.

Namespace

Drupal\log

Code

protected function getAddPageRoute(EntityTypeInterface $entity_type) {
  $route = new Route("/admin/structure/{$entity_type->id()}/add");
  $route
    ->setDefaults([
    '_controller' => 'Drupal\\log\\Controller\\LogAddController::add',
    '_title' => "Add {$entity_type->getLabel()}",
  ])
    ->setRequirement('_entity_create_access', $entity_type
    ->id())
    ->setOption('_admin_route', TRUE);
  return $route;
}