Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ResponseHeaderBag.php

function ResponseHeaderBag::__construct

Overrides HeaderBag::__construct

File

vendor/symfony/http-foundation/ResponseHeaderBag.php, line 31

Class

ResponseHeaderBag
ResponseHeaderBag is a container for Response HTTP headers.

Namespace

Symfony\Component\HttpFoundation

Code

public function __construct(array $headers = []) {
    parent::__construct($headers);
    if (!isset($this->headers['cache-control'])) {
        $this->set('Cache-Control', '');
    }
    
    /* RFC2616 - 14.18 says all Responses need to have a Date */
    if (!isset($this->headers['date'])) {
        $this->initDate();
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal