Merge branch '138-toggle-free-look-with-hotkey' into 'main/atys-live'
[ryzomcore.git] / web / public_php / webtt / cake / bootstrap.php
blobb69cb7b75511947afe32bd317068fbf3fb6c2247
1 <?php
2 /**
3 * Basic Cake functionality.
5 * Handles loading of core files needed on every request
7 * PHP versions 4 and 5
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
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)
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';