protected function RoleWatchdogHtmlRouteProvider::getSettingsFormRoute in Role Watchdog 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 RoleWatchdogHtmlRouteProvider::getSettingsFormRoute()
- RoleWatchdogHtmlRouteProvider::getRoutes in src/
RoleWatchdogHtmlRouteProvider.php - Provides routes for entities.
File
- src/
RoleWatchdogHtmlRouteProvider.php, line 41
Class
- RoleWatchdogHtmlRouteProvider
- Provides routes for Role Watchdog entities.
Namespace
Drupal\role_watchdogCode
protected function getSettingsFormRoute(EntityTypeInterface $entity_type) {
if (!$entity_type
->getBundleEntityType()) {
$route = new Route("/admin/structure/{$entity_type->id()}/settings");
$route
->setDefaults([
'_form' => 'Drupal\\role_watchdog\\Form\\RoleWatchdogSettingsForm',
'_title' => "{$entity_type->getLabel()} settings",
])
->setRequirement('_permission', $entity_type
->getAdminPermission())
->setOption('_admin_route', TRUE);
return $route;
}
}