Query/autoload.php

69 lines
1.3 KiB
PHP
Raw Normal View History

<?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
* @link https://github.com/aviat4ion/Query
2012-04-20 13:17:39 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* Autoloader for loading available database classes
*/
/**
* Reference to root path
*/
2012-04-30 16:06:06 -04:00
define('QBASE_PATH', dirname(__FILE__).'/');
/**
* Path to driver classes
*/
2012-04-30 16:06:06 -04:00
define('QDRIVER_PATH', QBASE_PATH.'drivers/');
2012-10-31 16:21:15 -04:00
// Require some common functions
require(QBASE_PATH.'common.php');
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
*
* @param string $class
*/
function query_autoload($class)
{
2012-05-21 15:18:06 -04:00
$class = strtolower($class);
2012-05-29 14:52:27 -04:00
2012-05-21 18:00:18 -04:00
// Load Firebird separately
2012-05-29 14:52:27 -04:00
if (function_exists('fbird_connect') && $class === 'firebird')
2012-05-21 18:00:18 -04:00
{
2012-05-29 14:52:27 -04:00
array_map('do_include', glob(QDRIVER_PATH.'/firebird/*.php'));
2012-05-21 18:00:18 -04:00
return;
}
2012-05-29 14:52:27 -04:00
2012-05-21 15:18:06 -04:00
$class_path = QBASE_PATH . "classes/{$class}.php";
2012-05-29 14:52:27 -04:00
2012-05-21 15:18:06 -04:00
$driver_path = QDRIVER_PATH . "{$class}";
2012-05-21 15:18:06 -04:00
if (is_file($class_path))
{
2012-05-21 15:18:06 -04:00
require_once($class_path);
}
elseif (is_dir($driver_path))
{
if (in_array($class, PDO::getAvailableDrivers()))
2012-05-21 15:18:06 -04:00
{
array_map('do_include', glob("{$driver_path}/*.php"));
}
}
}
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