mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Moving CakeErrorController to its own file.
This commit is contained in:
parent
a2186c412a
commit
5de88c0f02
1 changed files with 34 additions and 0 deletions
34
cake/libs/controller/cake_error_controller.php
Normal file
34
cake/libs/controller/cake_error_controller.php
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Error Handling Controller
|
||||||
|
*
|
||||||
|
* Controller used by ErrorHandler to render error views.
|
||||||
|
*
|
||||||
|
* @package cake
|
||||||
|
* @subpackage cake.cake.libs
|
||||||
|
*/
|
||||||
|
class CakeErrorController extends AppController {
|
||||||
|
public $name = 'CakeError';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Uses Property
|
||||||
|
*
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
public $uses = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* __construct
|
||||||
|
*
|
||||||
|
* @access public
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
function __construct() {
|
||||||
|
parent::__construct();
|
||||||
|
$this->_set(Router::getPaths());
|
||||||
|
$this->request = $this->params = Router::getRequest();
|
||||||
|
$this->constructClasses();
|
||||||
|
$this->Components->trigger('initialize', array(&$this));
|
||||||
|
$this->_set(array('cacheAction' => false, 'viewPath' => 'errors'));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue