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
|
|
|
|
|
|
|
/**
|
2005-05-22 23:24:09 +00:00
|
|
|
* The main "loop"
|
|
|
|
*
|
2005-08-21 06:49:02 +00:00
|
|
|
* Long description for file
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
|
|
* Copyright (c) 2005, CakePHP Authors/Developers
|
|
|
|
*
|
|
|
|
* Author(s): Michal Tatarynowicz aka Pies <tatarynowicz@gmail.com>
|
|
|
|
* Larry E. Masters aka PhpNut <nut@phpnut.com>
|
|
|
|
* Kamil Dzielinski aka Brego <brego.dk@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2005-05-22 23:24:09 +00:00
|
|
|
* @filesource
|
2005-08-21 06:49:02 +00:00
|
|
|
* @author CakePHP Authors/Developers
|
|
|
|
* @copyright Copyright (c) 2005, CakePHP Authors/Developers
|
|
|
|
* @link https://trac.cakephp.org/wiki/Authors Authors/Developers
|
|
|
|
* @package cake
|
2005-10-09 01:56:21 +00:00
|
|
|
* @subpackage cake.cake.app.webroot
|
2005-08-21 06:49:02 +00:00
|
|
|
* @since CakePHP v 0.2.9
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
2005-05-22 23:24:09 +00:00
|
|
|
* @lastmodified $Date$
|
2005-08-21 06:49:02 +00:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2005-05-22 23:24:09 +00:00
|
|
|
*/
|
|
|
|
|
2005-08-21 06:49:02 +00:00
|
|
|
|
2005-05-22 23:24:09 +00:00
|
|
|
/**
|
2005-06-14 19:57:01 +00:00
|
|
|
* Get Cake's root directory
|
|
|
|
*/
|
2005-06-05 19:42:54 +00:00
|
|
|
if (!defined('DS'))
|
2005-06-21 23:44:49 +00:00
|
|
|
{
|
2005-07-04 00:48:04 +00:00
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*/
|
2005-07-10 05:08:19 +00:00
|
|
|
define('DS', DIRECTORY_SEPARATOR);
|
2005-06-21 23:44:49 +00:00
|
|
|
}
|
2005-06-05 19:42:54 +00:00
|
|
|
|
|
|
|
if (!defined('ROOT'))
|
2005-06-21 23:44:49 +00:00
|
|
|
{
|
2005-07-04 00:48:04 +00:00
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*
|
|
|
|
*/
|
2005-10-03 04:48:00 +00:00
|
|
|
define('ROOT', dirname(dirname(dirname(__FILE__))).DS);
|
2005-06-21 23:44:49 +00:00
|
|
|
}
|
2005-05-15 21:41:38 +00:00
|
|
|
|
2005-10-03 04:48:00 +00:00
|
|
|
if (!defined('APP_DIR'))
|
|
|
|
{
|
|
|
|
define ('APP_DIR', basename(dirname(dirname(__FILE__))));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!defined('WEBROOT_DIR'))
|
|
|
|
{
|
|
|
|
define ('WEBROOT_DIR', basename(dirname(__FILE__)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Configuration, directory layout and standard libraries
|
|
|
|
*/
|
|
|
|
require_once ROOT.APP_DIR.DS.'config'.DS.'core.php';
|
|
|
|
require_once ROOT.APP_DIR.DS.'config'.DS.'paths.php';
|
|
|
|
require_once CAKE.'basics.php';
|
|
|
|
require_once LIBS.'log.php';
|
|
|
|
require_once LIBS.'object.php';
|
|
|
|
require_once LIBS.'neat_array.php';
|
|
|
|
require_once LIBS.'inflector.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (empty($uri) && defined('BASE_URL'))
|
|
|
|
{
|
|
|
|
$uri = setUri();
|
|
|
|
if ($uri === '/' || $uri === '/index.php' || $uri === '/app/')
|
|
|
|
{
|
|
|
|
$_GET['url'] = '/';
|
|
|
|
$url = '/';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$elements = explode('/index.php', $uri);
|
|
|
|
if(!empty($elements[1]))
|
|
|
|
{
|
|
|
|
$_GET['url'] = $elements[1];
|
|
|
|
$url = $elements[1];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$_GET['url'] = '/';
|
|
|
|
$url = '/';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$url = empty($_GET['url'])? null: $_GET['url'];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-19 03:35:19 +00:00
|
|
|
if (strpos($url, 'ccss/') === 0)
|
|
|
|
{
|
2005-07-10 05:08:19 +00:00
|
|
|
include ROOT.'public'.DS.'css.php';
|
|
|
|
die;
|
2005-06-19 03:35:19 +00:00
|
|
|
}
|
2005-07-10 05:08:19 +00:00
|
|
|
|
2005-05-22 23:24:09 +00:00
|
|
|
|
|
|
|
DEBUG? error_reporting(E_ALL): error_reporting(0);
|
2005-09-19 22:59:06 +00:00
|
|
|
if (DEBUG)
|
|
|
|
{
|
|
|
|
ini_set('display_errors', 1);
|
|
|
|
}
|
2005-05-22 23:24:09 +00:00
|
|
|
|
|
|
|
$TIME_START = getMicrotime();
|
|
|
|
|
2005-10-03 04:48:00 +00:00
|
|
|
uses('folder');
|
|
|
|
require_once CAKE.'dispatcher.php';
|
|
|
|
require_once LIBS.'model'.DS.'dbo'.DS.'dbo_factory.php';
|
2005-06-11 03:45:31 +00:00
|
|
|
|
2005-10-03 04:48:00 +00:00
|
|
|
if(!defined('AUTO_SESSION') || AUTO_SESSION == true)
|
|
|
|
{
|
|
|
|
// Starts the session unless AUTO_SESSION is explicitly set to false in config/core
|
|
|
|
session_start();
|
|
|
|
}
|
2005-08-22 04:15:57 +00:00
|
|
|
|
2005-08-21 06:49:02 +00:00
|
|
|
config('database');
|
2005-05-22 23:24:09 +00:00
|
|
|
|
2005-06-12 20:50:12 +00:00
|
|
|
if (class_exists('DATABASE_CONFIG'))
|
|
|
|
{
|
2005-07-10 05:08:19 +00:00
|
|
|
loadModels();
|
2005-06-12 20:50:12 +00:00
|
|
|
}
|
2005-05-22 23:24:09 +00:00
|
|
|
|
2005-10-03 04:48:00 +00:00
|
|
|
|
|
|
|
|
2005-06-21 23:44:49 +00:00
|
|
|
//RUN THE SCRIPT
|
2005-07-16 06:10:56 +00:00
|
|
|
if(isset($_GET['url']) && $_GET['url'] === 'favicon.ico')
|
2005-07-10 05:08:19 +00:00
|
|
|
{
|
|
|
|
}else{
|
2005-10-03 04:48:00 +00:00
|
|
|
$Dispatcher= new Dispatcher ();
|
|
|
|
$Dispatcher->dispatch($url);
|
2005-07-10 05:08:19 +00:00
|
|
|
}
|
2005-10-03 04:48:00 +00:00
|
|
|
|
2005-09-19 22:59:06 +00:00
|
|
|
if (DEBUG) {
|
|
|
|
echo "<!-- ". round(getMicrotime() - $TIME_START, 2) ."s -->";
|
|
|
|
}
|
2005-09-17 02:22:07 +00:00
|
|
|
?>
|