Same name and namespace in other branches
  1. 4.6.x includes/bootstrap.inc \bootstrap_invoke_all()
  2. 4.7.x includes/bootstrap.inc \bootstrap_invoke_all()
  3. 5.x includes/bootstrap.inc \bootstrap_invoke_all()
  4. 6.x includes/bootstrap.inc \bootstrap_invoke_all()

Invokes a bootstrap hook in all bootstrap modules that implement it.

Parameters

$hook: The name of the bootstrap hook to invoke.

See also

bootstrap_hooks()

3 calls to bootstrap_invoke_all()
drupal_language_initialize in includes/bootstrap.inc
Initializes all the defined language types.
_drupal_bootstrap_page_cache in includes/bootstrap.inc
Attempts to serve a page from the cache.
_drupal_bootstrap_page_header in includes/bootstrap.inc
Invokes hook_boot(), initializes locking system, and sends HTTP headers.

File

includes/bootstrap.inc, line 1403
Functions that need to be loaded on every Drupal request.

Code

function bootstrap_invoke_all($hook) {

  // Bootstrap modules should have been loaded when this function is called, so
  // we don't need to tell module_list() to reset its internal list (and we
  // therefore leave the first parameter at its default value of FALSE). We
  // still pass in TRUE for the second parameter, though; in case this is the
  // first time during the bootstrap that module_list() is called, we want to
  // make sure that its internal cache is primed with the bootstrap modules
  // only.
  foreach (module_list(FALSE, TRUE) as $module) {
    drupal_load('module', $module);
    module_invoke($module, $hook);
  }
}