OwlManAtt / activephp

A suite of tools (read as: ActiveTable) for easily making data objects to represent your model data.

This URL has Read+Write access

activephp / aphp.php
100644 30 lines (24 sloc) 0.554 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
30
<?php
/**
* The base file for the ActivePHP suite of tools.
*
* @package ActivePHP
* @author OwlManAtt <owlmanatt@gmail.com>
* @copyright 2007, Yasashii Syndicate
* @version 2.3.0
**/
 
// Required parts - the exception library.
require_once('exceptions.inc.php');
 
$base_path = realpath(getcwd());
$MODULES = array(
    'active_table',
    'csvio',
    'dagg'
);
 
foreach($MODULES as $module)
{
    $path = "$module/$module.class.php";
 
    // TODO - Verify the module exists.
    include_once($path);
} // end module load loop
 
?>