bootstrap_invoke_all($hook)
drupal/includes/bootstrap.inc, line 674
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_implements($hook) as $module) {
module_invoke($module, $hook);
}
}