JError/customErrorPage: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Display a custom error page and exit gracefully
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JError/customErrorPage|Edit Descrip... |
No edit summary |
||
| Line 17: | Line 17: | ||
!Description | !Description | ||
|- | |- | ||
| | | &$error | ||
| | | | ||
| $error Exception object | | $error Exception object | ||
Revision as of 17:33, 25 March 2010
Description
Display a custom error page and exit gracefully
Template:Description:JError/customErrorPage
Syntax
customErrorPage(&$error)
| Parameter Name | Default Value | Description |
|---|---|---|
| &$error | $error Exception object |
Returns
void
Defined in
libraries/joomla/error/error.php
Importing
jimport( 'joomla.error.error' );
Source Body
function customErrorPage(& $error)
{
// Initialize variables
jimport('joomla.document.document');
$app = & JFactory::getApplication();
$document = & JDocument::getInstance('error');
$config = & JFactory::getConfig();
//Get the current language direction
$language = &JFactory::getLanguage();
if ($language->isRTL()){
$dir ="rtl";
}
else {
$dir ="ltr";
}
// Get the current template from the application
$template = $app->getTemplate();
// Push the error object into the document
$document->setError($error);
@ob_end_clean();
$document->setTitle(JText::_('Error').': '.$error->code);
$document->setLanguage($language->getTag());
$document->setDirection($dir);
$data = $document->render(false, array (
'template' => $template,
'directory' => JPATH_THEMES,
'debug' => $config->getValue('config.debug')
));
JResponse::setBody($data);
echo JResponse::toString();
$app->close(0);
}
[Edit See Also] Template:SeeAlso:JError/customErrorPage
Examples
<CodeExamplesForm />