public function RequestContext::fromRequestStack in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Routing/RequestContext.php \Drupal\Core\Routing\RequestContext::fromRequestStack()
Populates the context from the current request from the request stack.
Parameters
\Symfony\Component\HttpFoundation\RequestStack $request_stack: The current request stack.
File
- core/
lib/ Drupal/ Core/ Routing/ RequestContext.php, line 27
Class
- RequestContext
- Holds information about the current request.
Namespace
Drupal\Core\RoutingCode
public function fromRequestStack(RequestStack $request_stack) {
$this
->fromRequest($request_stack
->getCurrentRequest());
}