| Versionen | |
|---|---|
| drupal6 – drupal7 | module_load_all_includes($type, $name = NULL) |
Load an include file for each of the modules that have been enabled in the system table.
includes/
<?php
function module_load_all_includes($type, $name = NULL) {
$modules = module_list();
foreach ($modules as $module) {
module_load_include($type, $module, $name);
}
}
?>
Kommentare
Kommentar hinzufügen