2012-03-19 13:24:36 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Query
|
|
|
|
*
|
|
|
|
* Free Query Builder / Database Abstraction Layer
|
|
|
|
*
|
2012-04-20 13:17:39 -04:00
|
|
|
* @package Query
|
|
|
|
* @author Timothy J. Warren
|
2014-01-02 12:36:50 -05:00
|
|
|
* @copyright Copyright (c) 2012 - 2014
|
2012-03-19 13:24:36 -04:00
|
|
|
* @link https://github.com/aviat4ion/Query
|
2012-04-20 13:17:39 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-03-19 13:24:36 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autoloader for loading available database classes
|
2014-03-31 16:01:58 -04:00
|
|
|
*
|
|
|
|
* @package Query
|
2012-03-19 13:24:36 -04:00
|
|
|
*/
|
|
|
|
|
2014-06-09 17:02:14 -04:00
|
|
|
namespace Query;
|
|
|
|
|
2012-04-19 11:42:50 -04:00
|
|
|
/**
|
|
|
|
* Reference to root path
|
2014-03-31 16:01:58 -04:00
|
|
|
* @subpackage Core
|
2012-04-19 11:42:50 -04:00
|
|
|
*/
|
2015-07-29 16:51:17 -04:00
|
|
|
if ( ! defined('QBASE_PATH')) define('QBASE_PATH', dirname(__FILE__).'/src/');
|
2012-04-19 11:42:50 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Path to driver classes
|
2014-03-31 16:01:58 -04:00
|
|
|
* @subpackage Core
|
2012-04-19 11:42:50 -04:00
|
|
|
*/
|
2015-06-04 15:27:55 -04:00
|
|
|
if ( ! defined('QDRIVER_PATH')) define('QDRIVER_PATH', QBASE_PATH.'drivers/');
|
2012-03-19 13:24:36 -04:00
|
|
|
|
2012-10-31 16:21:15 -04:00
|
|
|
// Require some common functions
|
|
|
|
require(QBASE_PATH.'common.php');
|
2012-08-22 21:17:27 -04:00
|
|
|
|
2014-06-09 17:02:14 -04:00
|
|
|
// Load Query Classes
|
|
|
|
spl_autoload_register(function ($class)
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
2015-07-29 16:51:17 -04:00
|
|
|
// Load by namespace
|
2014-08-08 13:48:20 -04:00
|
|
|
$path = str_replace('\\', DIRECTORY_SEPARATOR, $class);
|
|
|
|
$file = QBASE_PATH . "{$path}.php";
|
2015-06-04 15:27:55 -04:00
|
|
|
|
2015-07-30 16:40:30 -04:00
|
|
|
if (file_exists($file)) require_once($file);
|
2014-06-09 17:02:14 -04:00
|
|
|
});
|
2012-05-21 15:18:06 -04:00
|
|
|
|
2014-02-07 16:53:01 -05:00
|
|
|
// End of autoload.php
|