1 module.inc module_load_all_includes($type, $name = NULL)

Loads an include file for each module enabled in the {system} table.

File

core/includes/module.inc, line 354
API for loading and interacting with Backdrop modules.

Code

function module_load_all_includes($type, $name = NULL) {
  $modules = module_list();
  foreach ($modules as $module) {
    module_load_include($type, $module, $name);
  }
}