| Versionen | |
|---|---|
| drupal6 – drupal7 | module_load_all() |
Load all the modules that have been enabled in the system table.
includes/
<?php
function module_load_all() {
foreach (module_list(TRUE, FALSE) as $module) {
drupal_load('module', $module);
}
}
?>
Kommentare
Kommentar hinzufügen