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/modules/system/system.module
Refresh bootstrap column in the system table.

File

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

Code

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