function bootstrap_hooks

7.x bootstrap.inc bootstrap_hooks()
6.x bootstrap.inc bootstrap_hooks()

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

1 call to bootstrap_hooks()
_system_update_bootstrap_status in drupal-7.x/modules/system/system.module
Refresh bootstrap column in the system table.

File

drupal-7.x/includes/bootstrap.inc, line 1375
Functions that need to be loaded on every Drupal request.

Code

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