public function Request::initialize

Sets the parameters for this request.

This method also re-initializes all properties.

@api

Parameters

array $query The GET parameters:

array $request The POST parameters:

array $attributes The request attributes (parameters parsed from the PATH_INFO, ...):

array $cookies The COOKIE parameters:

array $files The FILES parameters:

array $server The SERVER parameters:

string $content The raw body data:

1 call to Request::initialize()
Request::__construct in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Request.php
Constructor.

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Request.php, line 187

Class

Request
Request represents an HTTP request.

Namespace

Symfony\Component\HttpFoundation

Code

public function initialize(array $query = array(), array $request = array(), array $attributes = array(), array $cookies = array(), array $files = array(), array $server = array(), $content = null) {
  $this->request = new ParameterBag($request);
  $this->query = new ParameterBag($query);
  $this->attributes = new ParameterBag($attributes);
  $this->cookies = new ParameterBag($cookies);
  $this->files = new FileBag($files);
  $this->server = new ServerBag($server);
  $this->headers = new HeaderBag($this->server
    ->getHeaders());
  $this->content = $content;
  $this->languages = null;
  $this->charsets = null;
  $this->acceptableContentTypes = null;
  $this->pathInfo = null;
  $this->requestUri = null;
  $this->baseUrl = null;
  $this->basePath = null;
  $this->method = null;
  $this->format = null;
}