You've already forked joomla_test
first commit
This commit is contained in:
1
libraries/cms/error/index.html
Normal file
1
libraries/cms/error/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
83
libraries/cms/error/page.php
Normal file
83
libraries/cms/error/page.php
Normal file
@ -0,0 +1,83 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Libraries
|
||||
* @subpackage Error
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('JPATH_BASE') or die;
|
||||
|
||||
/**
|
||||
* Displays the custom error page when an uncaught exception occurs.
|
||||
*
|
||||
* @package Joomla.Libraries
|
||||
* @subpackage Error
|
||||
* @since 3.0
|
||||
*/
|
||||
class JErrorPage
|
||||
{
|
||||
/**
|
||||
* Render the error page based on an exception.
|
||||
*
|
||||
* @param Exception $error The exception for which to render the error page.
|
||||
*
|
||||
* @return void
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public static function render(Exception $error)
|
||||
{
|
||||
try
|
||||
{
|
||||
$app = JFactory::getApplication();
|
||||
$document = JDocument::getInstance('error');
|
||||
|
||||
if (!$document)
|
||||
{
|
||||
// We're probably in an CLI environment
|
||||
exit($error->getMessage());
|
||||
$app->close(0);
|
||||
}
|
||||
|
||||
$config = JFactory::getConfig();
|
||||
|
||||
// Get the current template from the application
|
||||
$template = $app->getTemplate();
|
||||
|
||||
// Push the error object into the document
|
||||
$document->setError($error);
|
||||
|
||||
if (ob_get_contents())
|
||||
{
|
||||
ob_end_clean();
|
||||
}
|
||||
$document->setTitle(JText::_('Error') . ': ' . $error->getCode());
|
||||
$data = $document->render(
|
||||
false,
|
||||
array('template' => $template,
|
||||
'directory' => JPATH_THEMES,
|
||||
'debug' => $config->get('debug'))
|
||||
);
|
||||
|
||||
// Failsafe to get the error displayed.
|
||||
if (empty($data))
|
||||
{
|
||||
exit($error->getMessage());
|
||||
}
|
||||
else
|
||||
{
|
||||
// Do not allow cache
|
||||
JResponse::allowCache(false);
|
||||
|
||||
JResponse::setBody($data);
|
||||
echo JResponse::toString();
|
||||
}
|
||||
}
|
||||
catch (Exception $e)
|
||||
{
|
||||
exit('Error displaying the error page: ' . $e->getMessage());
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user