function TrustedRedirectResponse::isSafe

Returns whether the URL is considered as safe to redirect to.

Parameters

string $url: The URL checked for safety.

Return value

bool

Overrides SecuredRedirectResponse::isSafe

File

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

Class

TrustedRedirectResponse
Provides a redirect response which contains trusted URLs.

Namespace

Drupal\Core\Routing

Code

protected function isSafe($url) {
  return !empty($this->trustedUrls[$url]) || $this->isLocal($url);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.