function module_load_all
Same name and namespace in other branches
- 7.x drupal-7.x/includes/module.inc \module_load_all()
Load all the modules that have been enabled in the system table.
1 call to module_load_all()
- _drupal_bootstrap_full in drupal-6.x/
includes/ common.inc
Archivo
- drupal-6.x/
includes/ module.inc, line 11 - API for loading and interacting with Drupal modules.
Código
function module_load_all() {
foreach (module_list(TRUE, FALSE) as $module) {
drupal_load('module', $module);
}
}