2005-06-23 14:13:50 +00:00
< ? php
2005-08-21 06:49:02 +00:00
/* SVN FILE: $Id$ */
2005-05-15 21:41:38 +00:00
/**
2006-01-17 05:13:38 +00:00
* Short description for file .
2005-12-23 21:57:26 +00:00
*
2005-08-21 06:49:02 +00:00
* Long description for file
*
* PHP versions 4 and 5
*
2007-02-02 10:39:45 +00:00
* CakePHP ( tm ) : Rapid Development Framework < http :// www . cakephp . org />
2008-01-01 22:18:17 +00:00
* Copyright 2005 - 2008 , Cake Software Foundation , Inc .
2006-05-26 05:29:17 +00:00
* 1785 E . Sahara Avenue , Suite 490 - 204
* Las Vegas , Nevada 89104
2005-08-21 06:49:02 +00:00
*
2005-12-23 21:57:26 +00:00
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice .
2005-08-21 06:49:02 +00:00
*
2005-12-23 21:57:26 +00:00
* @ filesource
2008-01-01 22:18:17 +00:00
* @ copyright Copyright 2005 - 2008 , Cake Software Foundation , Inc .
2007-02-02 10:39:45 +00:00
* @ link http :// www . cakefoundation . org / projects / info / cakephp CakePHP ( tm ) Project
2006-05-26 05:29:17 +00:00
* @ package cake
* @ subpackage cake . app . webroot
2007-02-02 10:39:45 +00:00
* @ since CakePHP ( tm ) v 0.2 . 9
2006-05-26 05:29:17 +00:00
* @ version $Revision $
* @ modifiedby $LastChangedBy $
* @ lastmodified $Date $
* @ license http :// www . opensource . org / licenses / mit - license . php The MIT License
2005-05-22 23:24:09 +00:00
*/
2006-02-25 04:42:31 +00:00
/**
2008-06-19 14:45:54 +00:00
* Use the DS to separate the directories in other defines
2006-02-25 04:42:31 +00:00
*/
2006-05-26 05:29:17 +00:00
if ( ! defined ( 'DS' )) {
2007-12-29 03:30:46 +00:00
define ( 'DS' , DIRECTORY_SEPARATOR );
2006-05-26 05:29:17 +00:00
}
2005-05-22 23:24:09 +00:00
/**
2006-02-16 09:29:28 +00:00
* These defines should only be edited if you have cake installed in
* a directory layout other than the way it is distributed .
2008-06-19 14:45:54 +00:00
* When using custom settings be sure to use the DS and do not add a trailing DS .
*/
/**
* The full path to the directory which holds " app " , WITHOUT a trailing DS .
*
2005-06-14 19:57:01 +00:00
*/
2006-05-26 05:29:17 +00:00
if ( ! defined ( 'ROOT' )) {
2007-12-29 03:30:46 +00:00
define ( 'ROOT' , dirname ( dirname ( dirname ( __FILE__ ))));
2006-05-26 05:29:17 +00:00
}
2008-06-19 14:45:54 +00:00
/**
* The actual directory name for the " app " .
*
*/
2006-05-26 05:29:17 +00:00
if ( ! defined ( 'APP_DIR' )) {
2007-12-29 03:30:46 +00:00
define ( 'APP_DIR' , basename ( dirname ( dirname ( __FILE__ ))));
2006-05-26 05:29:17 +00:00
}
2006-02-16 09:29:28 +00:00
/**
2008-06-19 14:45:54 +00:00
* The absolute path to the " cake " directory , WITHOUT a trailing DS .
*
2006-02-16 09:29:28 +00:00
*/
2006-05-26 05:29:17 +00:00
if ( ! defined ( 'CAKE_CORE_INCLUDE_PATH' )) {
2007-12-29 03:30:46 +00:00
define ( 'CAKE_CORE_INCLUDE_PATH' , ROOT );
2006-05-26 05:29:17 +00:00
}
2008-06-19 14:45:54 +00:00
/**
* Editing below this line should NOT be necessary .
* Change at your own risk .
*
*/
2006-05-26 05:29:17 +00:00
if ( ! defined ( 'WEBROOT_DIR' )) {
2007-12-29 03:30:46 +00:00
define ( 'WEBROOT_DIR' , basename ( dirname ( __FILE__ )));
2006-05-26 05:29:17 +00:00
}
if ( ! defined ( 'WWW_ROOT' )) {
2007-12-29 03:30:46 +00:00
define ( 'WWW_ROOT' , dirname ( __FILE__ ) . DS );
2006-05-26 05:29:17 +00:00
}
if ( ! defined ( 'CORE_PATH' )) {
2008-06-19 14:45:54 +00:00
if ( function_exists ( 'ini_set' ) && ini_set ( 'include_path' , CAKE_CORE_INCLUDE_PATH . PATH_SEPARATOR . ROOT . DS . APP_DIR . DS . PATH_SEPARATOR . ini_get ( 'include_path' ))) {
2007-12-29 03:30:46 +00:00
define ( 'APP_PATH' , null );
define ( 'CORE_PATH' , null );
} else {
define ( 'APP_PATH' , ROOT . DS . APP_DIR . DS );
define ( 'CORE_PATH' , CAKE_CORE_INCLUDE_PATH . DS );
}
2006-05-26 05:29:17 +00:00
}
2007-03-05 15:14:35 +00:00
if ( ! include ( CORE_PATH . 'cake' . DS . 'bootstrap.php' )) {
2008-06-19 14:45:54 +00:00
trigger_error ( " CakePHP core could not be found. Check the value of CAKE_CORE_INCLUDE_PATH in APP/webroot/index.php. It should point to the directory containing your " . DS . " cake core directory and your " . DS . " vendors root directory. " , E_USER_ERROR );
2007-03-05 15:14:35 +00:00
}
2006-05-26 05:29:17 +00:00
if ( isset ( $_GET [ 'url' ]) && $_GET [ 'url' ] === 'favicon.ico' ) {
2007-07-25 04:38:28 +00:00
return ;
2006-05-26 05:29:17 +00:00
} else {
2007-12-29 03:30:46 +00:00
$Dispatcher = new Dispatcher ();
$Dispatcher -> dispatch ( $url );
2006-05-26 05:29:17 +00:00
}
2006-12-05 09:49:59 +00:00
if ( Configure :: read () > 0 ) {
2007-12-29 03:30:46 +00:00
echo " <!-- " . round ( getMicrotime () - $TIME_START , 4 ) . " s --> " ;
2006-05-26 05:29:17 +00:00
}
2005-09-17 02:22:07 +00:00
?>