HtmlHttpResponse
extends HttpResponse
in package
Table of Contents
Properties
- $body : string|null
- The HTML body of the response
- $cacheMaxAge : int|null
- Client cache max age in seconds
- $code : int|null
- The HTTP response code
- $contentLength : int|null
- $contentType : string|null
- $controllerOutput : string|null
- The output of the controller when running it
- $download : bool
- Is the file downloaded ? Or displayed ?
- $fileName : string|null
- The file name shared to the client
- $lastModifiedDate : DateTime|null
- Client cache max age in seconds
- $layout : string|null
- The layout to use ot generate HTML
- $values : array<string|int, mixed>|null
- The values to send to the layout
Methods
- __construct() : mixed
- Constructor
- __toString() : string
- Get this response as string
- collectFrom() : void
- generateExceptionHtmlResponse() : static
- generateFromException() : HtmlHttpResponse
- Generate HtmlResponse from Exception
- generateFromUserException() : static
- Generate HtmlResponse from UserException
- getBody() : string
- Get the body
- getCacheMaxAge() : int
- getCode() : int|null
- Get the code
- getContentLength() : int
- getContentType() : string|null
- getControllerOutput() : string|null
- Get the controller output
- getFileName() : string
- getHttpDateFormat() : string
- getLastModifiedDate() : DateTime
- isDownload() : bool
- process() : void
- Process the response
- render() : HtmlHttpResponse
- Render the $layout with these $values
- run() : bool
- Process response to client
- setBody() : HttpResponse
- Set the body
- setCacheMaxAge() : void
- setCode() : HttpResponse
- Set the code
- setContentLength() : void
- setContentType() : void
- setControllerOutput() : void
- Set the controller output
- setDownload() : void
- setFileName() : void
- setLastModifiedDate() : $this
- getContentDisposition() : string
- Get content disposition header value
- sendHeaders() : void
Properties
$body
The HTML body of the response
protected
string|null
$body
= null
$cacheMaxAge
Client cache max age in seconds
protected
int|null
$cacheMaxAge
= null
$code
The HTTP response code
protected
int|null
$code
= null
$contentLength
protected
int|null
$contentLength
= null
The content length to send to client
$contentType
protected
string|null
$contentType
= null
The content type to send to client
$controllerOutput
The output of the controller when running it
protected
string|null
$controllerOutput
= null
$download
Is the file downloaded ? Or displayed ?
protected
bool
$download
= false
$fileName
The file name shared to the client
protected
string|null
$fileName
= null
$lastModifiedDate
Client cache max age in seconds
protected
DateTime|null
$lastModifiedDate
= null
$layout
The layout to use ot generate HTML
protected
string|null
$layout
= null
$values
The values to send to the layout
protected
array<string|int, mixed>|null
$values
= null
Methods
__construct()
Constructor
public
__construct([string $body = null ][, mixed $contentType = 'text/html; charset="UTF-8"' ]) : mixed
Parameters
- $body : string = null
- $contentType : mixed = 'text/html; charset="UTF-8"'
__toString()
Get this response as string
public
__toString() : string
Return values
stringcollectFrom()
public
collectFrom(string $layout[, array<string|int, mixed> $values = [] ]) : void
Parameters
- $layout : string
- $values : array<string|int, mixed> = []
generateExceptionHtmlResponse()
public
static generateExceptionHtmlResponse(Exception $exception, int $code[, array<string|int, mixed> $values = [] ][, string|null $type = null ]) : static
Parameters
- $exception : Exception
- $code : int
- $values : array<string|int, mixed> = []
- $type : string|null = null
Return values
staticgenerateFromException()
Generate HtmlResponse from Exception
public
static generateFromException(Exception $exception[, array<string|int, mixed> $values = [] ]) : HtmlHttpResponse
Parameters
- $exception : Exception
- $values : array<string|int, mixed> = []
Return values
HtmlHttpResponsegenerateFromUserException()
Generate HtmlResponse from UserException
public
static generateFromUserException(UserException $exception[, array<string|int, mixed> $values = [] ]) : static
Parameters
- $exception : UserException
- $values : array<string|int, mixed> = []
Return values
staticgetBody()
Get the body
public
getBody() : string
Return values
stringgetCacheMaxAge()
public
getCacheMaxAge() : int
Return values
intgetCode()
Get the code
public
getCode() : int|null
Return values
int|nullgetContentLength()
public
getContentLength() : int
Return values
intgetContentType()
public
getContentType() : string|null
Return values
string|nullgetControllerOutput()
Get the controller output
public
getControllerOutput() : string|null
Return values
string|nullgetFileName()
public
getFileName() : string
Return values
stringgetHttpDateFormat()
public
getHttpDateFormat() : string
Return values
stringgetLastModifiedDate()
public
getLastModifiedDate() : DateTime
Return values
DateTimeisDownload()
public
isDownload() : bool
Return values
boolprocess()
Process the response
public
process() : void
render()
Render the $layout with these $values
public
static render(string $layout[, array<string|int, mixed> $values = [] ]) : HtmlHttpResponse
Parameters
- $layout : string
- $values : array<string|int, mixed> = []
Tags
Return values
HtmlHttpResponserun()
Process response to client
public
run() : bool
Return values
boolsetBody()
Set the body
public
setBody(string|null $body) : HttpResponse
Parameters
- $body : string|null
Return values
HttpResponsesetCacheMaxAge()
public
setCacheMaxAge(int $cacheMaxAge) : void
Parameters
- $cacheMaxAge : int
setCode()
Set the code
public
setCode(int $code) : HttpResponse
Parameters
- $code : int
Return values
HttpResponsesetContentLength()
public
setContentLength(int $contentLength) : void
Parameters
- $contentLength : int
setContentType()
public
setContentType(string $contentType) : void
Parameters
- $contentType : string
setControllerOutput()
Set the controller output
public
setControllerOutput(string $controllerOutput) : void
Parameters
- $controllerOutput : string
setDownload()
public
setDownload(bool $download) : void
Parameters
- $download : bool
setFileName()
public
setFileName(string $fileName) : void
Parameters
- $fileName : string
setLastModifiedDate()
public
setLastModifiedDate(DateTime|int $lastModifiedDate) : $this
Parameters
- $lastModifiedDate : DateTime|int
-
DateTime or timestamp
Return values
$thisgetContentDisposition()
Get content disposition header value
protected
getContentDisposition() : string
Return values
stringsendHeaders()
protected
sendHeaders() : void