function module_load_all_includes in Schema 5
Load an include file for each of the modules that have been enabled in the system table. Copied from D6.
1 call to module_load_all_includes()
- drupal_get_schema in ./
schema_util.inc - Get the schema definition of a table, or the whole database schema. Copied from D6.
File
- ./
schema_util.inc, line 94
Code
function module_load_all_includes($type, $name = NULL) {
$modules = module_list();
foreach ($modules as $module) {
module_load_include($type, $module, $name);
}
}