ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ResponseHeader.php
Go to the documentation of this file.
1 <?php
2 
3 namespace ILIAS\HTTP\Response;
4 
5 /******************************************************************************
6  *
7  * This file is part of ILIAS, a powerful learning management system.
8  *
9  * ILIAS is licensed with the GPL-3.0, you should have received a copy
10  * of said license along with the source code.
11  *
12  * If this is not the case or you just want to try ILIAS, you'll find
13  * us at:
14  * https://www.ilias.de
15  * https://github.com/ILIAS-eLearning
16  *
17  *****************************************************************************/
25 interface ResponseHeader
26 {
32  public const ACCESS_CONTROL_ALLOW_ORIGIN = 'Access-Control-Allow-Origin';
38  public const ACCEPT_PATCH = 'Accept-Patch';
44  public const ACCEPT_RANGES = 'Accept-Ranges';
50  public const ALLOW = 'Allow';
57  public const CACHE_CONTROL = 'Cache-Control';
63  public const CONNECTION = 'Connection';
71  public const CONTENT_DISPOSITION = 'Content-Disposition';
77  public const CONTENT_ENCODING = 'Content-Encoding';
83  public const CONTENT_LANGUAGE = 'Content-Language';
89  public const CONTENT_LENGTH = 'Content-Length';
95  public const CONTENT_LOCATION = 'Content-Location';
101  public const CONTENT_RANGE = 'Content-Range';
107  public const CONTENT_TYPE = 'Content-Type';
113  public const DATE = 'Date';
119  public const ETAG = 'ETag';
126  public const EXPIRES = 'Expires';
133  public const LAST_MODIFIED = 'Last-Modified';
140  public const LINK = 'Link';
146  public const LOCATION = 'Location';
154  public const P3P = 'P3P';
161  public const PRAGMA = 'Pragma';
168  public const PUBLIC_KEY_PINS = 'Public-Key-Pins';
176  public const RETRY_AFTER = 'Retry-After';
182  public const SERVER = 'Server';
189  public const STRICT_TRANSPORT_SECURITY = 'Strict-Transport-Security';
196  public const TRAILER = 'Trailer';
203  public const TRANSFER_ENCODING = 'Transfer-Encoding';
219  public const TSV = 'TSV';
227  public const VARY = 'Vary';
233  public const WARNING = 'Warning';
239  public const WWW_AUTHENTICATE = 'WWW-Authenticate';
245  public const X_XSS_PROTECTION = 'X-XSS-Protection';
253  public const X_CONTENT_TYPE_OPTIONS = 'X-Content-Type-Options';
259  public const UPGRADE_INSECURE_REQUESTS = 'Upgrade-Insecure-Requests';
260 }
Interface ResponseHeader.