You are here

protected function CacheableSecuredRedirectResponse::fromResponse in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Routing/CacheableSecuredRedirectResponse.php \Drupal\Core\Routing\CacheableSecuredRedirectResponse::fromResponse()
  2. 10 core/lib/Drupal/Core/Routing/CacheableSecuredRedirectResponse.php \Drupal\Core\Routing\CacheableSecuredRedirectResponse::fromResponse()

Copies over the values from the given response.

Parameters

\Symfony\Component\HttpFoundation\RedirectResponse $response: The redirect response object.

Overrides SecuredRedirectResponse::fromResponse

File

core/lib/Drupal/Core/Routing/CacheableSecuredRedirectResponse.php, line 20

Class

CacheableSecuredRedirectResponse
Provides a common base class for cacheable safe redirects.

Namespace

Drupal\Core\Routing

Code

protected function fromResponse(RedirectResponse $response) {
  parent::fromResponse($response);
  $metadata = $this
    ->getCacheableMetadata();
  if ($response instanceof CacheableResponseInterface) {
    $metadata
      ->addCacheableDependency($response
      ->getCacheableMetadata());
  }
  else {
    $metadata
      ->setCacheMaxAge(0);
  }
}