FormRouteEnhancer::applies

public FormRouteEnhancer::applies(Route $route)

Declares if the route enhancer applies to the given route.

Parameters

\Symfony\Component\Routing\Route $route: The route to consider attaching to.

Return value

bool TRUE if the check applies to the passed route, False otherwise.

Overrides RouteEnhancerInterface::applies

File

core/lib/Drupal/Core/Routing/Enhancer/FormRouteEnhancer.php, line 16

Class

FormRouteEnhancer
Enhancer to add a wrapping controller for _form routes.

Namespace

Drupal\Core\Routing\Enhancer

Code

public function applies(Route $route) {
  return $route->hasDefault('_form') && !$route->hasDefault('_controller');
}
doc_Drupal
2016-10-29 09:15:43
Comments
Leave a Comment

Please login to continue.