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
|
|
|
*/
|
|
|
|
|
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
|
|
|
*/
|
2012-04-30 16:06:06 -04:00
|
|
|
define('QBASE_PATH', dirname(__FILE__).'/');
|
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
|
|
|
*/
|
2012-04-30 16:06:06 -04:00
|
|
|
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
|
|
|
|
2012-05-21 15:18:06 -04:00
|
|
|
/**
|
2014-02-07 16:53:01 -05:00
|
|
|
* Load query classes
|
2012-05-21 15:18:06 -04:00
|
|
|
*
|
2014-03-31 16:01:58 -04:00
|
|
|
* @subpackage Core
|
2012-05-21 15:18:06 -04:00
|
|
|
* @param string $class
|
|
|
|
*/
|
|
|
|
function query_autoload($class)
|
2012-03-19 13:24:36 -04:00
|
|
|
{
|
2014-04-02 17:08:50 -04:00
|
|
|
$class_segments = explode('\\', $class);
|
|
|
|
$class = strtolower(array_pop($class_segments));
|
2014-04-02 22:40:54 -04:00
|
|
|
|
|
|
|
// Load DB Driver classes
|
|
|
|
if ($class_segments == array('Query', 'Driver'))
|
2012-05-21 18:00:18 -04:00
|
|
|
{
|
2014-04-02 22:40:54 -04:00
|
|
|
$driver_path = QDRIVER_PATH . "{$class}";
|
|
|
|
// @codeCoverageIgnoreStart
|
|
|
|
if (is_dir($driver_path))
|
|
|
|
{
|
|
|
|
// Firebird is a special case, since it's not a PDO driver
|
|
|
|
if (
|
|
|
|
in_array($class, PDO::getAvailableDrivers())
|
|
|
|
|| function_exists('fbird_connect') && $class === 'firebird'
|
|
|
|
)
|
|
|
|
{
|
|
|
|
|
|
|
|
array_map('do_include', glob("{$driver_path}/*.php"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
// @codeCoverageIgnoreEnd
|
2012-05-21 18:00:18 -04:00
|
|
|
}
|
2014-04-02 22:40:54 -04:00
|
|
|
|
|
|
|
// Load other classes
|
|
|
|
foreach(array(
|
|
|
|
QBASE_PATH . "classes/interfaces/{$class}.php",
|
|
|
|
QBASE_PATH . "classes/abstract/{$class}.php",
|
|
|
|
QBASE_PATH . "classes/{$class}.php"
|
|
|
|
) as $path)
|
2012-05-21 15:18:06 -04:00
|
|
|
{
|
2014-04-02 22:40:54 -04:00
|
|
|
if (file_exists($path))
|
2012-05-21 15:18:06 -04:00
|
|
|
{
|
2014-04-02 22:40:54 -04:00
|
|
|
// @codeCoverageIgnoreStart
|
|
|
|
require_once($path);
|
|
|
|
return;
|
|
|
|
// @codeCoverageIgnoreEnd
|
2012-05-21 15:18:06 -04:00
|
|
|
}
|
2012-03-19 13:24:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-21 15:18:06 -04:00
|
|
|
// Set up autoloader
|
|
|
|
spl_autoload_register('query_autoload');
|
|
|
|
|
2014-02-07 16:53:01 -05:00
|
|
|
// End of autoload.php
|