blob: 96ea34c920110e821c5c859a5191f61e226aaeb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<?php
namespace Drupal\Core\Controller;
use Drupal\Core\Utility\CallableResolver;
use Symfony\Component\HttpFoundation\Request;
/**
* ControllerResolver to enhance controllers beyond Symfony's basic handling.
*
* It adds one behavior:
*
* - By default, a controller name follows the class::method notation. This
* class adds the possibility to use a service from the container as a
* controller by using a service:method notation (Symfony uses the same
* convention).
*/
class ControllerResolver implements ControllerResolverInterface {
/**
* Constructs a new ControllerResolver.
*
* @param \Drupal\Core\Utility\CallableResolver $callableResolver
* The callable resolver.
*/
public function __construct(protected CallableResolver $callableResolver) {
}
/**
* {@inheritdoc}
*/
public function getControllerFromDefinition($controller, $path = '') {
try {
$callable = $this->callableResolver->getCallableFromDefinition($controller);
}
catch (\InvalidArgumentException $e) {
throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable.', $path), 0, $e);
}
return $callable;
}
/**
* {@inheritdoc}
*/
public function getController(Request $request): callable|FALSE {
if (!$controller = $request->attributes->get('_controller')) {
return FALSE;
}
return $this->getControllerFromDefinition($controller, $request->getPathInfo());
}
}
|