public EntityResolverManager::setRouteOptions(Route $route)
Set the upcasting route objects.
Parameters
\Symfony\Component\Routing\Route $route: The route object to add the upcasting information onto.
File
- core/lib/Drupal/Core/Entity/EntityResolverManager.php, line 205
Class
- EntityResolverManager
- Sets the entity route parameter converter options automatically.
Namespace
Drupal\Core\Entity
Code
1 2 3 4 5 6 7 8 9 10 11 | public function setRouteOptions(Route $route ) { if ( $controller = $this ->getControllerClass( $route ->getDefaults())) { // Try to use reflection. if ( $this ->setParametersFromReflection( $controller , $route )) { return ; } } // Try to use _entity_* information on the route. $this ->setParametersFromEntityInformation( $route ); } |
Please login to continue.