module_load_all_includes

Versions
6 – 7
module_load_all_includes($type, $name = NULL)

Load an include file for each of the modules that have been enabled in the system table.

▾ 1 function calls module_load_all_includes()

drupal_get_schema in includes/common.inc
Get the schema definition of a table, or the whole database schema.

Code

includes/module.inc, line 284

<?php
function module_load_all_includes($type, $name = NULL) {
  $modules = module_list();
  foreach ($modules as $module) {
    module_load_include($type, $module, $name);
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.