You are here

function bootstrap_hooks in Drupal 4

Same name and namespace in other branches
  1. 5 includes/bootstrap.inc \bootstrap_hooks()
  2. 6 includes/bootstrap.inc \bootstrap_hooks()
  3. 7 includes/bootstrap.inc \bootstrap_hooks()

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

1 call to bootstrap_hooks()
system_modules in modules/system.module
Menu callback; displays a listing of all modules.

File

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

Code

function bootstrap_hooks() {
  return array(
    'init',
    'exit',
  );
}