function AdminHtmlRouteProvider::getEditFormRoute
Gets the edit-form route.
Parameters
\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type.
Return value
\Symfony\Component\Routing\Route|null The generated route, if available.
Overrides DefaultHtmlRouteProvider::getEditFormRoute
1 call to AdminHtmlRouteProvider::getEditFormRoute()
- MediaRouteProvider::getCanonicalRoute in core/modules/ media/ src/ Routing/ MediaRouteProvider.php 
- Gets the canonical route.
1 method overrides AdminHtmlRouteProvider::getEditFormRoute()
- BlockContentRouteProvider::getEditFormRoute in core/modules/ block_content/ src/ Routing/ BlockContentRouteProvider.php 
- Gets the edit-form route.
File
- 
              core/lib/ Drupal/ Core/ Entity/ Routing/ AdminHtmlRouteProvider.php, line 40 
Class
- AdminHtmlRouteProvider
- Provides HTML routes for entities with administrative add/edit/delete pages.
Namespace
Drupal\Core\Entity\RoutingCode
protected function getEditFormRoute(EntityTypeInterface $entity_type) {
  if ($route = parent::getEditFormRoute($entity_type)) {
    $route->setOption('_admin_route', TRUE);
    return $route;
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
