interface ControllerResolverInterface
Same name in this branch
- 11.1.x vendor/symfony/http-kernel/Controller/ControllerResolverInterface.php \Symfony\Component\HttpKernel\Controller\ControllerResolverInterface
Extends the ControllerResolverInterface from symfony.
Hierarchy
- interface \Symfony\Component\HttpKernel\Controller\ControllerResolverInterface
- interface \Drupal\Core\Controller\ControllerResolverInterface extends \Symfony\Component\HttpKernel\Controller\ControllerResolverInterface
Expanded class hierarchy of ControllerResolverInterface
All classes that implement ControllerResolverInterface
2 files declare their use of ControllerResolverInterface
- ContextualLinkManager.php in core/
lib/ Drupal/ Core/ Menu/ ContextualLinkManager.php - RouteBuilder.php in core/
lib/ Drupal/ Core/ Routing/ RouteBuilder.php
File
-
core/
lib/ Drupal/ Core/ Controller/ ControllerResolverInterface.php, line 10
Namespace
Drupal\Core\ControllerView source
interface ControllerResolverInterface extends BaseControllerResolverInterface {
/**
* Returns the Controller instance with a given controller route definition.
*
* As several resolvers can exist for a single application, a resolver must
* return false when it is not able to determine the controller.
*
* @param mixed $controller
* The controller attribute like in $request->attributes->get('_controller')
*
* @return mixed|bool
* A PHP callable representing the Controller, or false if this resolver is
* not able to determine the controller
*
* @throws \InvalidArgumentException|\LogicException
* Thrown if the controller can't be found.
*
* @see \Symfony\Component\HttpKernel\Controller\ControllerResolverInterface::getController()
*/
public function getControllerFromDefinition($controller);
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
ControllerResolverInterface::getController | public | function | Returns the Controller instance associated with a Request. | 3 |
ControllerResolverInterface::getControllerFromDefinition | public | function | Returns the Controller instance with a given controller route definition. | 1 |