bootstrap_invoke_all($hook)
drupal/includes/bootstrap.inc, line 463
Call all init or exit hooks without including all modules.
$hook The name of the bootstrap hook we wish to invoke.
function bootstrap_invoke_all($hook) {
foreach (module_list(FALSE, TRUE) as $module) {
drupal_load('module', $module);
module_invoke($module, $hook);
}
}