function SecuredRedirectResponse::setTargetUrl
Same name in other branches
- 8.9.x core/lib/Drupal/Component/HttpFoundation/SecuredRedirectResponse.php \Drupal\Component\HttpFoundation\SecuredRedirectResponse::setTargetUrl()
- 10 core/lib/Drupal/Component/HttpFoundation/SecuredRedirectResponse.php \Drupal\Component\HttpFoundation\SecuredRedirectResponse::setTargetUrl()
- 11.x core/lib/Drupal/Component/HttpFoundation/SecuredRedirectResponse.php \Drupal\Component\HttpFoundation\SecuredRedirectResponse::setTargetUrl()
1 call to SecuredRedirectResponse::setTargetUrl()
- TrustedRedirectResponse::setTrustedTargetUrl in core/
lib/ Drupal/ Core/ Routing/ TrustedRedirectResponse.php - Sets the target URL to a trusted URL.
File
-
core/
lib/ Drupal/ Component/ HttpFoundation/ SecuredRedirectResponse.php, line 56
Class
- SecuredRedirectResponse
- Provides a common base class for safe redirects.
Namespace
Drupal\Component\HttpFoundationCode
public function setTargetUrl($url) {
if (!$this->isSafe($url)) {
throw new \InvalidArgumentException(sprintf('It is not safe to redirect to %s', $url));
}
return parent::setTargetUrl($url);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.