Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques statiques | |
static | allowCache ($allow=null) |
static | setHeader ($name, $value, $replace=false) |
static | getHeaders () |
static | clearHeaders () |
static | sendHeaders () |
static | setBody ($content) |
static | prependBody ($content) |
static | appendBody ($content) |
static | getBody ($toArray=false) |
static | toString ($compress=false) |
Fonctions membres protégées statiques | |
static | compress ($data) |
static | clientEncoding () |
Attributs protégés statiques | |
static | $body = array() |
static | $cachable = false |
static | $headers = array() |
Définition à la ligne 25 du fichier response.php.
|
static |
Set/get cachable state for the response.
If $allow is set, sets the cachable state of the response. Always returns current state.
boolean | $allow | True to allow browser caching. |
Définition à la ligne 60 du fichier response.php.
Références JFactory\getApplication().
|
static |
Append content to the body content
string | $content | The content to append to the response body. |
Définition à la ligne 165 du fichier response.php.
Références JFactory\getApplication().
|
static |
Clear headers.
Définition à la ligne 105 du fichier response.php.
Références JFactory\getApplication().
|
staticprotected |
Check, whether client supports compressed data
Définition à la ligne 274 du fichier response.php.
|
staticprotected |
Compress the data
Checks the accept encoding of the browser and compresses the data before sending it to the client.
string | $data | Content to compress for output. |
Définition à la ligne 214 du fichier response.php.
Références JFactory\getConfig().
|
static |
Return the body content
boolean | $toArray | Whether or not to return the body content as an array of strings or as a single string; defaults to false. |
Définition à la ligne 180 du fichier response.php.
Références JFactory\getApplication().
|
static |
Return array of headers.
Définition à la ligne 92 du fichier response.php.
Références JFactory\getApplication().
|
static |
Prepend content to the body content
string | $content | The content to prepend to the response body. |
Définition à la ligne 150 du fichier response.php.
Références JFactory\getApplication().
|
static |
Send all headers.
Définition à la ligne 118 du fichier response.php.
Références JFactory\getApplication().
|
static |
Set body content.
If body content already defined, this will replace it.
string | $content | The content to set to the response body. |
Définition à la ligne 135 du fichier response.php.
Références JFactory\getApplication().
Référencé par JApplication\render().
|
static |
Set a header.
If $replace is true, replaces any headers already defined with that $name.
string | $name | The name of the header to set. |
string | $value | The value of the header to set. |
boolean | $replace | True to replace any existing headers by name. |
Définition à la ligne 79 du fichier response.php.
Références JFactory\getApplication().
|
static |
Sends all headers prior to returning the string
boolean | $compress | If true, compress the data |
Définition à la ligne 195 du fichier response.php.
Références JFactory\getApplication().
Référencé par JApplication\__toString().
|
staticprotected |
Définition à la ligne 32 du fichier response.php.
|
staticprotected |
Définition à la ligne 39 du fichier response.php.
|
staticprotected |
Définition à la ligne 46 du fichier response.php.