2005-06-23 14:13:50 +00:00
|
|
|
<?php
|
2005-05-15 21:41:38 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// + $Id$
|
|
|
|
// +------------------------------------------------------------------+ //
|
2005-07-04 02:07:21 +00:00
|
|
|
// + Cake PHP : Rapid Development Framework <http://www.cakephp.org/> + //
|
2005-07-04 02:59:39 +00:00
|
|
|
// + Copyright: (c) 2005, CakePHP Authors/Developers + //
|
2005-05-16 00:52:42 +00:00
|
|
|
// + 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> + //
|
2005-05-15 21:41:38 +00:00
|
|
|
// +------------------------------------------------------------------+ //
|
2005-05-16 00:52:42 +00:00
|
|
|
// + Licensed under The MIT License + //
|
|
|
|
// + Redistributions of files must retain the above copyright notice. + //
|
2005-05-17 21:27:56 +00:00
|
|
|
// + See: http://www.opensource.org/licenses/mit-license.php + //
|
2005-05-15 21:41:38 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
2005-05-22 23:24:09 +00:00
|
|
|
* Purpose: Dispatch
|
|
|
|
* The main "loop"
|
|
|
|
*
|
|
|
|
* @filesource
|
2005-07-04 02:07:21 +00:00
|
|
|
* @author CakePHP Authors/Developers
|
2005-07-04 02:59:39 +00:00
|
|
|
* @copyright Copyright (c) 2005, CakePHP Authors/Developers
|
2005-07-04 01:07:14 +00:00
|
|
|
* @link https://trac.cakephp.org/wiki/Authors Authors/Developers
|
2005-05-22 23:24:09 +00:00
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.public
|
2005-07-04 02:07:21 +00:00
|
|
|
* @since CakePHP v 0.2.9
|
2005-05-22 23:24:09 +00:00
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
|
*/
|
|
|
|
|
2005-06-19 03:35:19 +00:00
|
|
|
$url = empty($_GET['url'])? null: $_GET['url'];
|
|
|
|
|
2005-05-22 23:24:09 +00:00
|
|
|
session_start();
|
|
|
|
|
|
|
|
/**
|
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-06-21 23:44:49 +00:00
|
|
|
define('DS', DIRECTORY_SEPARATOR);
|
|
|
|
}
|
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-06-21 23:44:49 +00:00
|
|
|
define('ROOT', dirname(dirname(__FILE__)).DS);
|
|
|
|
}
|
2005-05-15 21:41:38 +00:00
|
|
|
|
2005-06-19 03:35:19 +00:00
|
|
|
if (strpos($url, 'ccss/') === 0)
|
|
|
|
{
|
2005-06-21 23:44:49 +00:00
|
|
|
include ROOT.'public'.DS.'css.php';
|
2005-06-19 03:35:19 +00:00
|
|
|
die;
|
|
|
|
}
|
|
|
|
|
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-06-21 23:44:49 +00:00
|
|
|
config('tags', 'database');
|
2005-05-22 23:24:09 +00:00
|
|
|
|
2005-06-12 20:50:12 +00:00
|
|
|
if (class_exists('DATABASE_CONFIG'))
|
|
|
|
{
|
2005-06-23 20:41:10 +00:00
|
|
|
$DB = DboFactory::getInstance('default');
|
2005-06-21 23:44:49 +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-06-26 17:54:49 +00:00
|
|
|
if($_GET['url'] === 'favicon.ico')
|
|
|
|
{
|
|
|
|
}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 -->";
|
|
|
|
|
|
|
|
?>
|