[126] | 1 | <?php |
---|
| 2 | /** |
---|
| 3 | * Basic Cake functionality. |
---|
| 4 | * |
---|
| 5 | * Handles loading of core files needed on every request |
---|
| 6 | * |
---|
| 7 | * PHP versions 4 and 5 |
---|
| 8 | * |
---|
| 9 | * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) |
---|
| 10 | * Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org) |
---|
| 11 | * |
---|
| 12 | * Licensed under The MIT License |
---|
| 13 | * Redistributions of files must retain the above copyright notice. |
---|
| 14 | * |
---|
| 15 | * @copyright Copyright 2005-2011, Cake Software Foundation, Inc. (http://cakefoundation.org) |
---|
| 16 | * @link http://cakephp.org CakePHP(tm) Project |
---|
| 17 | * @package cake |
---|
| 18 | * @subpackage cake.cake |
---|
| 19 | * @since CakePHP(tm) v 0.2.9 |
---|
| 20 | * @license MIT License (http://www.opensource.org/licenses/mit-license.php) |
---|
| 21 | */ |
---|
| 22 | if (!defined('PHP5')) { |
---|
| 23 | define('PHP5', (PHP_VERSION >= 5)); |
---|
| 24 | } |
---|
| 25 | if (!defined('E_DEPRECATED')) { |
---|
| 26 | define('E_DEPRECATED', 8192); |
---|
| 27 | } |
---|
| 28 | error_reporting(E_ALL & ~E_DEPRECATED); |
---|
| 29 | |
---|
| 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'; |
---|