function LocalAwareRedirectResponseTrait::getRequestContext
Returns the request context.
Return value
\Drupal\Core\Routing\RequestContext The request context.
File
-
core/
lib/ Drupal/ Core/ Routing/ LocalAwareRedirectResponseTrait.php, line 39
Class
- LocalAwareRedirectResponseTrait
- Provides a trait which ensures that a URL is safe to redirect to.
Namespace
Drupal\Core\RoutingCode
protected function getRequestContext() {
if (!isset($this->requestContext)) {
$this->requestContext = \Drupal::service('router.request_context');
}
return $this->requestContext;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.