3 * Basic Cake functionality.
5 * Handles loading of core files needed on every request
9 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
10 * Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
12 * Licensed under The MIT License
13 * Redistributions of files must retain the above copyright notice.
15 * @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
16 * @link http://cakephp.org CakePHP(tm) Project
18 * @subpackage cake.cake
19 * @since CakePHP(tm) v 0.2.9
20 * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
22 if (!defined('PHP5')) {
23 define('PHP5', (PHP_VERSION
>= 5));
25 if (!defined('E_DEPRECATED')) {
26 define('E_DEPRECATED', 8192);
28 error_reporting(E_ALL
& ~E_DEPRECATED
);
30 require CORE_PATH
. 'cake' . DS
. 'basics.php';
31 $TIME_START = getMicrotime();
32 require CORE_PATH
. 'cake' . DS
. 'config' . DS
. 'paths.php';
33 require LIBS
. 'object.php';
34 require LIBS
. 'inflector.php';
35 require LIBS
. 'configure.php';
36 require LIBS
. 'set.php';
37 require LIBS
. 'cache.php';
38 Configure
::getInstance();
39 require CAKE
. 'dispatcher.php';