MediaWiki REL1_33
|
Handle responses for Ajax requests (send headers, print content, that sort of thing) More...
Public Member Functions | |
__construct ( $text=null, Config $config=null) | |
addText ( $text) | |
Add content to the response. | |
checkLastModified ( $timestamp) | |
checkLastModified tells the client to use the client-cached response if possible. | |
disable () | |
Disable output. | |
loadFromMemcached ( $mckey, $touched) | |
printText () | |
Output text. | |
sendHeaders () | |
Construct the header and output it. | |
setCacheDuration ( $duration) | |
Set the number of seconds to get the response cached by a proxy. | |
setContentType ( $type) | |
Set the HTTP header Content-Type. | |
setResponseCode ( $code) | |
Set the HTTP response code. | |
setVary ( $vary) | |
Set the HTTP Vary header. | |
storeInMemcached ( $mckey, $expiry=86400) | |
Private Attributes | |
$mCacheDuration | |
Number of seconds to get the response cached by a proxy. | |
Config | $mConfig |
$mContentType | |
HTTP header Content-Type. | |
$mDisabled | |
Disables output. | |
$mLastModified | |
Date for the HTTP header Last-modified. | |
$mResponseCode | |
HTTP response code. | |
$mText | |
Content of our HTTP response. | |
$mVary | |
HTTP Vary header. | |
Handle responses for Ajax requests (send headers, print content, that sort of thing)
Definition at line 31 of file AjaxResponse.php.
string | null | $text | |
Config | null | $config |
Definition at line 83 of file AjaxResponse.php.
References addText().
AjaxResponse::addText | ( | $text | ) |
Add content to the response.
string | $text |
Definition at line 142 of file AjaxResponse.php.
Referenced by __construct().
AjaxResponse::checkLastModified | ( | $timestamp | ) |
checkLastModified tells the client to use the client-cached response if possible.
If successful, the AjaxResponse is disabled so that any future call to AjaxResponse::printText() have no effect.
string | $timestamp |
Definition at line 223 of file AjaxResponse.php.
References $fname, $wgCacheEpoch, $wgCachePages, disable(), setResponseCode(), wfDebug(), and wfTimestamp().
AjaxResponse::disable | ( | ) |
AjaxResponse::loadFromMemcached | ( | $mckey, | |
$touched | |||
) |
AjaxResponse::printText | ( | ) |
AjaxResponse::sendHeaders | ( | ) |
Construct the header and output it.
Definition at line 160 of file AjaxResponse.php.
References HttpStatus\header(), and wfDeprecated().
AjaxResponse::setCacheDuration | ( | $duration | ) |
Set the number of seconds to get the response cached by a proxy.
int | $duration |
Definition at line 103 of file AjaxResponse.php.
AjaxResponse::setContentType | ( | $type | ) |
Set the HTTP header Content-Type.
string | $type |
Definition at line 127 of file AjaxResponse.php.
References $type.
AjaxResponse::setResponseCode | ( | $code | ) |
Set the HTTP response code.
string | $code |
Definition at line 119 of file AjaxResponse.php.
References $code.
Referenced by checkLastModified().
AjaxResponse::setVary | ( | $vary | ) |
AjaxResponse::storeInMemcached | ( | $mckey, | |
$expiry = 86400 |
|||
) |
string | $mckey | |
int | $expiry |
Definition at line 307 of file AjaxResponse.php.
References $cache, and wfTimestampNow().
|
private |
Number of seconds to get the response cached by a proxy.
Definition at line 36 of file AjaxResponse.php.
|
private |
Definition at line 77 of file AjaxResponse.php.
|
private |
HTTP header Content-Type.
Definition at line 42 of file AjaxResponse.php.
|
private |
Disables output.
Can be set by calling $AjaxResponse->disable()
Definition at line 48 of file AjaxResponse.php.
|
private |
Date for the HTTP header Last-modified.
Definition at line 54 of file AjaxResponse.php.
|
private |
HTTP response code.
Definition at line 60 of file AjaxResponse.php.
|
private |
Content of our HTTP response.
Definition at line 72 of file AjaxResponse.php.
Referenced by printText().
|
private |
HTTP Vary header.
Definition at line 66 of file AjaxResponse.php.