You are here

public function TrustedRedirectResponse::setTrustedTargetUrl in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Routing/TrustedRedirectResponse.php \Drupal\Core\Routing\TrustedRedirectResponse::setTrustedTargetUrl()
  2. 9 core/lib/Drupal/Core/Routing/TrustedRedirectResponse.php \Drupal\Core\Routing\TrustedRedirectResponse::setTrustedTargetUrl()

Sets the target URL to a trusted URL.

Parameters

string $url: A trusted URL.

Return value

$this

File

core/lib/Drupal/Core/Routing/TrustedRedirectResponse.php, line 37

Class

TrustedRedirectResponse
Provides a redirect response which contains trusted URLs.

Namespace

Drupal\Core\Routing

Code

public function setTrustedTargetUrl($url) {
  $this->trustedUrls[$url] = TRUE;
  return $this
    ->setTargetUrl($url);
}