public
Description: A suite of tools (read as: ActiveTable) for easily making data objects to represent your model data.
Homepage: http://elsa.godless-internets.org/aphp
Clone URL: git://github.com/OwlManAtt/activephp.git
Click here to lend your support to: activephp and make a donation at www.pledgie.com !
activephp / aphp.php
100644 29 lines (23 sloc) 0.548 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/**
* The base file for the ActivePHP suite of tools.
*
* @package ActivePHP
* @author OwlManAtt <owlmanatt@gmail.com>
* @copyright 2007-2009, Yasashii Syndicate
* @version 2.5.0
**/
 
// Required parts - the exception library.
require_once('exceptions.inc.php');
 
$base_path = realpath(getcwd());
$MODULES = array(
    'active_table',
    'csvio',
);
 
foreach($MODULES as $module)
{
    $path = "$module/$module.class.php";
 
    // TODO - Verify the module exists.
    include_once($path);
} // end module load loop
 
?>