Query/autoload.php

86 lines
1.5 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
* @copyright Copyright (c) 2012
* @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-04-12 14:00:42 -04:00
if ( ! function_exists('do_include'))
2012-04-10 14:06:34 -04:00
{
/**
* Bulk directory loading workaround for use
* with array_map and glob
*
* @param string $path
* @return void
*/
2012-04-12 14:00:42 -04:00
function do_include($path)
{
require_once($path);
}
2012-04-10 14:06:34 -04:00
}
// Load base classes
2012-04-30 16:06:06 -04:00
array_map('do_include', glob(QBASE_PATH.'classes/*.php'));
// Load PDO Drivers
foreach(pdo_drivers() as $d)
{
2012-04-30 16:06:06 -04:00
$dir = QDRIVER_PATH.$d;
2012-04-10 14:06:34 -04:00
if(is_dir($dir))
{
2012-04-10 14:06:34 -04:00
array_map('do_include', glob($dir.'/*.php'));
}
}
// Load Firebird driver, if applicable
if (function_exists('fbird_connect'))
{
2012-04-30 16:06:06 -04:00
array_map('do_include', glob(QDRIVER_PATH.'/firebird/*.php'));
2012-04-10 14:06:34 -04:00
}
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
/**
* Filter out db rows into one array
*
* @param array $array
* @param mixed $index
* @return array
*/
function db_filter($array, $index)
{
$new_array = array();
foreach($array as &$a)
2012-04-10 14:06:34 -04:00
{
$new_array[] = $a[$index];
}
return $new_array;
}
// End of autoload.php