Remove error handler from FrontController
This commit is contained in:
@ -102,62 +102,35 @@ class FrontController
|
||||
|
||||
public function execute()
|
||||
{
|
||||
try {
|
||||
$request = \Majestic\Env::getRequestUri(true);
|
||||
$route = $this->getRouter()->route($request);
|
||||
if (!$route) {
|
||||
throw new \Majestic\Exception\Error404Exception('Route for "' . $request . '" not found');
|
||||
}
|
||||
|
||||
$action_class = $route->getAction();
|
||||
if (!class_exists($action_class)) {
|
||||
throw new \Majestic\Exception\GeneralException('Action class "' . $action_class . '" not found.');
|
||||
}
|
||||
|
||||
$action = new $action_class();
|
||||
$layout_class = $route->getLayout();
|
||||
if (!class_exists($layout_class)) {
|
||||
throw new \Majestic\Exception\GeneralException('Layout class "' . $layout_class . '" not found.');
|
||||
}
|
||||
|
||||
/**
|
||||
* @var \Majestic\Layout\Layout $layout
|
||||
*/
|
||||
$layout = new $layout_class();
|
||||
$html = $layout->fetch($action);
|
||||
if (\Majestic\Config::get('PROFILER')) {
|
||||
if (is_subclass_of($action, 'AjaxAction')) {
|
||||
\Majestic\Util\Profiler\Profiler::getInstance()->getJson();
|
||||
} else {
|
||||
$html = \Majestic\Util\Profiler\Profiler::getInstance()->end($html);
|
||||
}
|
||||
}
|
||||
return $html;
|
||||
$request = \Majestic\Env::getRequestUri(true);
|
||||
$route = $this->getRouter()->route($request);
|
||||
if (!$route) {
|
||||
throw new \Majestic\Exception\Error404Exception('Route for "' . $request . '" not found');
|
||||
}
|
||||
catch (\Exception $e) {
|
||||
if (\Majestic\Config::get('DEBUG')) {
|
||||
if (!headers_sent()) {
|
||||
if ($e instanceof \Majestic\Exception\ErrorHTTPException) {
|
||||
header($e->getHTTPHeader());
|
||||
} else {
|
||||
header('HTTP/1.0 500 Internal Server Error');
|
||||
}
|
||||
}
|
||||
\Majestic\Exception\ErrorHandler::logError($e);
|
||||
return \Majestic\Exception\ErrorHandler::showDebug($e);
|
||||
}
|
||||
$layout_class = $this->getRouter()->getErrorLayout();
|
||||
|
||||
/**
|
||||
* @var \Majestic\Layout\ErrorLayout $layout
|
||||
*/
|
||||
$layout = new $layout_class();
|
||||
$layout->setException($e);
|
||||
$error_action = new ErrorAction($e);
|
||||
if (isset($action_class) && is_subclass_of($action_class, 'AjaxAction')) {
|
||||
$error_action->setAjaxError();
|
||||
}
|
||||
return $layout->fetch($error_action);
|
||||
$action_class = $route->getAction();
|
||||
if (!class_exists($action_class)) {
|
||||
throw new \Majestic\Exception\GeneralException('Action class "' . $action_class . '" not found.');
|
||||
}
|
||||
|
||||
$action = new $action_class();
|
||||
$layout_class = $route->getLayout();
|
||||
if (!class_exists($layout_class)) {
|
||||
throw new \Majestic\Exception\GeneralException('Layout class "' . $layout_class . '" not found.');
|
||||
}
|
||||
|
||||
/**
|
||||
* @var \Majestic\Layout\Layout $layout
|
||||
*/
|
||||
$layout = new $layout_class();
|
||||
$html = $layout->fetch($action);
|
||||
if (\Majestic\Config::get('PROFILER')) {
|
||||
if (is_subclass_of($action, 'AjaxAction')) {
|
||||
\Majestic\Util\Profiler\Profiler::getInstance()->getJson();
|
||||
} else {
|
||||
$html = \Majestic\Util\Profiler\Profiler::getInstance()->end($html);
|
||||
}
|
||||
}
|
||||
return $html;
|
||||
}
|
||||
}
|
@ -12,7 +12,7 @@ class ErrorHandler
|
||||
|
||||
static public function init()
|
||||
{
|
||||
set_error_handler(array('Majestic\Exception\ErrorHandler', 'error_handler'));
|
||||
//set_error_handler(array('Majestic\Exception\ErrorHandler', 'error_handler'));
|
||||
}
|
||||
|
||||
static public function error_handler($errno, $errstr, $errfile, $errline)
|
||||
|
Reference in New Issue
Block a user