Browse Source

Code refactoring, #16

git-svn-id: svn+ssh://code.netmonsters.ru/svn/majestic/branches/evo@116 4cb57b5f-5bbd-dd11-951b-001d605cbbc5
master
pzinovkin 15 years ago
parent
commit
c71458bee4
  1. 20
      app/FrontController.php

20
app/FrontController.php

@ -108,7 +108,7 @@ class FrontController
{
try {
//try {
try {
$request = Env::getRequestUri();
$route = $this->getRouter()->route($request);
if (!$route) {
@ -120,21 +120,15 @@ class FrontController
$layout_class = $route->getLayout();
$layout = new $layout_class();
return $layout->fetch($action);
//} catch (GeneralException $e) {
// throw $e;
//} /*catch (Exception $e) {
} catch (GeneralException $e) {
throw $e;
} catch (Exception $e) {
throw new GeneralException($e->getMessage(), $e->getCode());
//} */
}
} catch (Exception $e) {
var_dump($e);
die('111');
/*if (DEBUG == true) {
if (DEBUG == true) {
return $e->toHtml();
} else {
$layout = new ErrorLayout();
return $layout->fetch($e->getCode());
} */
}
}
}
}
Loading…
Cancel
Save