protected function KeywordHtmlRouteProvider::getSettingsFormRoute in Alinks 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 KeywordHtmlRouteProvider::getSettingsFormRoute()
- KeywordHtmlRouteProvider::getRoutes in src/
KeywordHtmlRouteProvider.php - Provides routes for entities.
File
- src/
KeywordHtmlRouteProvider.php, line 70
Class
- KeywordHtmlRouteProvider
- Provides routes for Keyword entities.
Namespace
Drupal\alinksCode
protected function getSettingsFormRoute(EntityTypeInterface $entity_type) {
if (!$entity_type
->getBundleEntityType()) {
$route = new Route("/admin/config/content/alinks");
$route
->setDefaults([
'_form' => 'Drupal\\alinks\\Form\\KeywordSettingsForm',
'_title' => "Alinks settings",
])
->setRequirement('_permission', $entity_type
->getAdminPermission())
->setOption('_admin_route', TRUE);
return $route;
}
}