module_load_all()
drupal-5/includes/module.inc, line 11
Load all the modules that have been enabled in the system table.
<?php
function module_load_all() {
foreach (module_list(TRUE, FALSE) as $module) {
drupal_load('module', $module);
}
}
?>