2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Basic Cake functionality.
|
|
|
|
*
|
2009-05-01 21:05:46 +00:00
|
|
|
* Handles loading of core files needed on every request
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-10-03 16:38:58 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-05-01 21:05:46 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-01-26 19:18:20 +00:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-01-26 19:18:20 +00:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-01-26 22:03:03 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.config
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 0.2.9
|
2009-05-01 21:05:46 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2009-07-31 15:48:30 +00:00
|
|
|
if (!defined('E_DEPRECATED')) {
|
2009-08-01 12:36:57 +00:00
|
|
|
define('E_DEPRECATED', 8192);
|
2009-07-31 15:48:30 +00:00
|
|
|
}
|
2009-08-01 12:36:57 +00:00
|
|
|
error_reporting(E_ALL & ~E_DEPRECATED);
|
|
|
|
|
2010-12-04 00:18:44 +00:00
|
|
|
/**
|
|
|
|
* If the index.php file is used instead of an .htaccess file
|
|
|
|
* or if the user can not set the web root to use the public
|
|
|
|
* directory we will define ROOT there, otherwise we set it
|
|
|
|
* here.
|
|
|
|
*/
|
|
|
|
if (!defined('ROOT')) {
|
|
|
|
define('ROOT', '../');
|
|
|
|
}
|
|
|
|
if (!defined('WEBROOT_DIR')) {
|
|
|
|
define('WEBROOT_DIR', 'webroot');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Path to the cake directory.
|
|
|
|
*/
|
2010-12-07 05:56:10 +00:00
|
|
|
define('CAKE', CORE_PATH . 'Cake' . DS);
|
2010-12-04 00:18:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Path to the application's directory.
|
|
|
|
*/
|
|
|
|
if (!defined('APP')) {
|
|
|
|
define('APP', ROOT.DS.APP_DIR.DS);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Path to the application's libs directory.
|
|
|
|
*/
|
2011-04-17 10:37:00 +00:00
|
|
|
define('APPLIBS', APP.'Lib'.DS);
|
2010-12-04 00:18:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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')) {
|
2011-05-13 06:23:49 +00:00
|
|
|
define('TESTS', APP.'Test'.DS);
|
2010-12-04 00:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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')) {
|
2011-03-10 02:41:13 +00:00
|
|
|
define('VENDORS', ROOT . DS . 'vendors' . DS);
|
2010-12-04 00:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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/');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-17 10:35:21 +00:00
|
|
|
require CAKE . 'basics.php';
|
|
|
|
require CAKE . 'Core' . DS .'App.php';
|
|
|
|
require CAKE . 'Error' . DS . 'exceptions.php';
|
2010-12-04 01:23:47 +00:00
|
|
|
|
2010-12-05 15:24:42 +00:00
|
|
|
spl_autoload_register(array('App', 'load'));
|
|
|
|
|
2010-12-04 06:46:51 +00:00
|
|
|
App::uses('ErrorHandler', 'Error');
|
2010-12-04 01:23:47 +00:00
|
|
|
App::uses('Configure', 'Core');
|
|
|
|
App::uses('Cache', 'Cache');
|
2010-12-04 07:04:30 +00:00
|
|
|
App::uses('Object', 'Core');
|
2010-12-04 00:18:44 +00:00
|
|
|
|
2010-12-04 01:23:47 +00:00
|
|
|
Configure::bootstrap(isset($boot) ? $boot : true);
|
2010-12-04 00:18:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Full url prefix
|
|
|
|
*/
|
|
|
|
if (!defined('FULL_BASE_URL')) {
|
|
|
|
$s = null;
|
|
|
|
if (env('HTTPS')) {
|
|
|
|
$s ='s';
|
|
|
|
}
|
2010-09-02 00:29:55 +00:00
|
|
|
|
2010-12-04 00:18:44 +00:00
|
|
|
$httpHost = env('HTTP_HOST');
|
2010-09-02 21:00:52 +00:00
|
|
|
|
2010-12-04 00:18:44 +00:00
|
|
|
if (isset($httpHost)) {
|
|
|
|
define('FULL_BASE_URL', 'http'.$s.'://'.$httpHost);
|
|
|
|
}
|
|
|
|
unset($httpHost, $s);
|
2011-01-02 06:30:03 +00:00
|
|
|
}
|