<?php $modules = array(); /** * Iterate all defined modules, and load them into the global array. * FIXME: Make this lazy (load on demand) */ foreach($MODULES as $modulename) { include_once($MODULES_DIR . "/" . $modulename . ".php"); $module = call_user_func($modulename . "_init"); $modules[$modulename] = $module; } ?>