diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2012-08-02 11:09:40 +0000 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2012-08-02 11:09:40 +0000 |
commit | 6dfd5d507d9863f987b30b0a5ab4268aea2ed875 (patch) | |
tree | 9c3de66b4aaa1e6bfa3c6442d807ec70bc479d11 /poc/poc02-compiling-cake/src/vendor/cakephp-2.2.1-0-gcc44130/lib/Cake/bootstrap.php | |
parent | f4792ba1a7785220fef5adb1cb3e7ce8ac40152f (diff) | |
download | 2012-php-weave-6dfd5d507d9863f987b30b0a5ab4268aea2ed875.tar.gz 2012-php-weave-6dfd5d507d9863f987b30b0a5ab4268aea2ed875.tar.bz2 2012-php-weave-6dfd5d507d9863f987b30b0a5ab4268aea2ed875.zip |
J'étais parti sur un download pourri de Cake. Les gars on abusé sur GitHub.
git-svn-id: file:///var/svn/2012-php-weave/trunk@7 d972a294-176a-4cf9-8ea1-fcd5b0c30f5c
Diffstat (limited to 'poc/poc02-compiling-cake/src/vendor/cakephp-2.2.1-0-gcc44130/lib/Cake/bootstrap.php')
-rw-r--r-- | poc/poc02-compiling-cake/src/vendor/cakephp-2.2.1-0-gcc44130/lib/Cake/bootstrap.php | 160 |
1 files changed, 160 insertions, 0 deletions
diff --git a/poc/poc02-compiling-cake/src/vendor/cakephp-2.2.1-0-gcc44130/lib/Cake/bootstrap.php b/poc/poc02-compiling-cake/src/vendor/cakephp-2.2.1-0-gcc44130/lib/Cake/bootstrap.php new file mode 100644 index 0000000..40ac76b --- /dev/null +++ b/poc/poc02-compiling-cake/src/vendor/cakephp-2.2.1-0-gcc44130/lib/Cake/bootstrap.php @@ -0,0 +1,160 @@ +<?php +/** + * Basic Cake functionality. + * + * Handles loading of core files needed on every request + * + * PHP 5 + * + * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) + * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * + * Licensed under The MIT License + * Redistributions of files must retain the above copyright notice. + * + * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org) + * @link http://cakephp.org CakePHP(tm) Project + * @package Cake + * @since CakePHP(tm) v 0.2.9 + * @license MIT License (http://www.opensource.org/licenses/mit-license.php) + */ +define('TIME_START', microtime(true)); + +if (!defined('E_DEPRECATED')) { + define('E_DEPRECATED', 8192); +} + +if (!defined('E_USER_DEPRECATED')) { + define('E_USER_DEPRECATED', E_USER_NOTICE); +} +error_reporting(E_ALL & ~E_DEPRECATED); + +if (!defined('CAKE_CORE_INCLUDE_PATH')) { + define('CAKE_CORE_INCLUDE_PATH', dirname(dirname(__FILE__))); +} + +if (!defined('CORE_PATH')) { + define('CORE_PATH', CAKE_CORE_INCLUDE_PATH . DS); +} + +if (!defined('WEBROOT_DIR')) { + define('WEBROOT_DIR', 'webroot'); +} + +/** + * Path to the cake directory. + */ + define('CAKE', CORE_PATH . 'Cake' . DS); + +/** + * Path to the application's directory. + */ +if (!defined('APP')) { + define('APP', ROOT . DS . APP_DIR . DS); +} + +/** + * Path to the application's libs directory. + */ + define('APPLIBS', APP . 'Lib' . DS); + +/** + * Path to the public CSS directory. + */ + define('CSS', WWW_ROOT . 'css' . DS); + +/** + * Path to the public JavaScript directory. + */ + define('JS', WWW_ROOT . 'js' . DS); + +/** + * Path to the public images directory. + */ + define('IMAGES', WWW_ROOT . 'img' . DS); + +/** + * Path to the tests directory. + */ +if (!defined('TESTS')) { + define('TESTS', APP . 'Test' . DS); +} + +/** + * Path to the temporary files directory. + */ +if (!defined('TMP')) { + define('TMP', APP . 'tmp' . DS); +} + +/** + * Path to the logs directory. + */ + define('LOGS', TMP . 'logs' . DS); + +/** + * Path to the cache files directory. It can be shared between hosts in a multi-server setup. + */ + define('CACHE', TMP . 'cache' . DS); + +/** + * Path to the vendors directory. + */ +if (!defined('VENDORS')) { + define('VENDORS', ROOT . DS . 'vendors' . DS); +} + +/** + * Web path to the public images directory. + */ +if (!defined('IMAGES_URL')) { + define('IMAGES_URL', 'img/'); +} + +/** + * Web path to the CSS files directory. + */ +if (!defined('CSS_URL')) { + define('CSS_URL', 'css/'); +} + +/** + * Web path to the js files directory. + */ +if (!defined('JS_URL')) { + define('JS_URL', 'js/'); +} + + +require CAKE . 'basics.php'; +require CAKE . 'Core' . DS . 'App.php'; +require CAKE . 'Error' . DS . 'exceptions.php'; + +spl_autoload_register(array('App', 'load')); + +App::uses('ErrorHandler', 'Error'); +App::uses('Configure', 'Core'); +App::uses('CakePlugin', 'Core'); +App::uses('Cache', 'Cache'); +App::uses('Object', 'Core'); +App::$bootstrapping = true; + +Configure::bootstrap(isset($boot) ? $boot : true); + + +/** + * Full url prefix + */ +if (!defined('FULL_BASE_URL')) { + $s = null; + if (env('HTTPS')) { + $s = 's'; + } + + $httpHost = env('HTTP_HOST'); + + if (isset($httpHost)) { + define('FULL_BASE_URL', 'http' . $s . '://' . $httpHost); + } + unset($httpHost, $s); +} |