module_load_all_includes
includes/module.inc, строка 272
- Версии
- 6
module_load_all_includes($type, $name = NULL)
Load an include file for each of the modules that have been enabled in the system table.
Код
<?php
function module_load_all_includes($type, $name = NULL) {
$modules = module_list();
foreach ($modules as $module) {
module_load_include($type, $module, $name);
}
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии