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