modX.sendError
Last updated May 14th, 2019 | Page history | Improve this page | Report an issue
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn moremodX::sendError¶
Send the user to a type-specific core error page and halt PHP execution.
The parameter 'type' can be any field, which will load the template file in core/error. MODX comes prepackaged with 2 default error pages; these are 'unavailable' (the default), and 'fatal'.
Syntax¶
API Doc: modX::sendError()
void sendError ([string $type = ''], [array $options = array()])
Examples¶
Send an Unavailable 503 error page.
$modx->sendError('unavailable');
Send a Fatal 500 error page.
$modx->sendError('fatal');
See Also¶
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn more