function bootstrap_hooks

Defines the critical hooks that force modules to always be loaded.

1 call to bootstrap_hooks()
_system_update_bootstrap_status in drupal/core/modules/system/system.module
Refreshes the list of bootstrap modules.

File

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

Code

function bootstrap_hooks() {
  return array(
    'boot',
    'exit',
    'watchdog',
    'language_init',
  );
}