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
|
|
|
|
* @subpackage cake.public
|
|
|
|
* @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
|
|
|
|
|
|
|
/**
|
|
|
|
* Enter description here...
|
|
|
|
*/
|
2005-06-19 03:35:19 +00:00
|
|
|
$url = empty($_GET['url'])? null: $_GET['url'];
|
|
|
|
|
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-07-10 05:08:19 +00:00
|
|
|
define('ROOT', dirname(dirname(__FILE__)).DS);
|
2005-06-21 23:44:49 +00:00
|
|
|
}
|
2005-05-15 21:41:38 +00:00
|
|
|
|
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-15 21:41:38 +00:00
|
|
|
/**
|
2005-06-21 23:44:49 +00:00
|
|
|
* Configuration, directory layout and standard libraries
|
|
|
|
*/
|
|
|
|
require_once ROOT.'config/core.php';
|
|
|
|
require_once ROOT.'config/paths.php';
|
|
|
|
require_once ROOT.'libs/basics.php';
|
|
|
|
require_once ROOT.'libs/log.php';
|
|
|
|
require_once ROOT.'libs/object.php';
|
2005-07-04 01:39:06 +00:00
|
|
|
require_once ROOT.'libs/neat_array.php';
|
2005-06-21 23:44:49 +00:00
|
|
|
require_once ROOT.'libs/inflector.php';
|
2005-05-22 23:24:09 +00:00
|
|
|
|
|
|
|
DEBUG? error_reporting(E_ALL): error_reporting(0);
|
|
|
|
|
|
|
|
$TIME_START = getMicrotime();
|
|
|
|
|
2005-06-23 20:41:10 +00:00
|
|
|
uses('folder', 'dispatcher', 'dbo_factory');
|
2005-06-11 03:45:31 +00:00
|
|
|
|
2005-08-22 04:15:57 +00:00
|
|
|
session_start();
|
|
|
|
|
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-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{
|
|
|
|
$DISPATCHER = new Dispatcher ();
|
|
|
|
$DISPATCHER->dispatch($url);
|
|
|
|
}
|
2005-06-21 23:44:49 +00:00
|
|
|
//CLEANUP
|
2005-05-22 23:24:09 +00:00
|
|
|
if (DEBUG) echo "<!-- ". round(getMicrotime() - $TIME_START, 2) ."s -->";
|
|
|
|
|
2005-09-17 02:22:07 +00:00
|
|
|
?>
|