MediaWiki master
|
Show an error that looks like an HTTP server error. More...
Inherits MWException.
Public Member Functions | |
__construct ( $httpCode, $content, $header=null) | |
getHTML () | |
Returns HTML for reporting the HTTP error. | |
getStatusCode () | |
Returns the HTTP status code supplied to the constructor. | |
isLoggable () | |
We don't want the default exception logging as we got our own logging set up in self::report. | |
report () | |
Report and log the HTTP error. | |
Public Member Functions inherited from MWException | |
hasOverriddenHandler () | |
msg ( $key, $fallback,... $params) | |
Get a message from i18n. | |
useMessageCache () | |
Can the extension use the Message class/wfMessage to get i18n-ed messages? | |
Additional Inherited Members | |
Static Public Member Functions inherited from MWException | |
static | isCommandLine () |
Check whether we are in command line mode or not to report the exception in the correct format. | |
Show an error that looks like an HTTP server error.
Replacement for wfHttpError().
Definition at line 33 of file HttpError.php.
HttpError::__construct | ( | $httpCode, | |
$content, | |||
$header = null ) |
int | $httpCode | HTTP status code to send to the client |
string | Message | $content | Content of the message |
string | Message | null | $header | Content of the header (\<title\> and \<h1\>) |
Definition at line 49 of file HttpError.php.
References $header.
HttpError::getHTML | ( | ) |
Returns HTML for reporting the HTTP error.
This will be a minimal but complete HTML document.
Definition at line 121 of file HttpError.php.
Referenced by report().
HttpError::getStatusCode | ( | ) |
Returns the HTTP status code supplied to the constructor.
Definition at line 74 of file HttpError.php.
HttpError::isLoggable | ( | ) |
We don't want the default exception logging as we got our own logging set up in self::report.
Reimplemented from MWException.
Definition at line 65 of file HttpError.php.
HttpError::report | ( | ) |
Report and log the HTTP error.
Sends the appropriate HTTP status code and outputs an HTML page with an error message.
Reimplemented from MWException.
Definition at line 83 of file HttpError.php.
References getHTML().