function module_load_all_includes
Same name and namespace in other branches
- 6.x drupal-6.x/includes/module.inc \module_load_all_includes()
Loads an include file for each module enabled in the {system} table.
1 call to module_load_all_includes()
- drupal_get_complete_schema in drupal-7.x/
includes/ bootstrap.inc - Gets the whole database schema.
1 string reference to 'module_load_all_includes'
- drupal_get_complete_schema in drupal-7.x/
includes/ bootstrap.inc - Gets the whole database schema.
Archivo
- drupal-7.x/
includes/ module.inc, line 340 - API for loading and interacting with Drupal modules.
Código
function module_load_all_includes($type, $name = NULL) {
$modules = module_list();
foreach ($modules as $module) {
module_load_include($type, $module, $name);
}
}