hook_boot

  1. drupal
    1. 6 core.php function
    2. 7 system.api.php function
Drupal 7 hook_boot()

Perform setup tasks for all page requests.

This hook is run at the beginning of the page request. It is typically used to set up global parameters that are needed later in the request.

Only use this hook if your code must run even for cached page views. This hook is called before modules or most include files are loaded into memory. It happens while Drupal is still in bootstrap mode.

See also

hook_init()

Related topics

2 string references to 'hook_boot'

5 functions implement hook_boot()

File

modules/system/system.api.php, line 1805
Hooks provided by Drupal core and the System module.

Code

function hook_boot() {
  // We need user_access() in the shutdown function. Make sure it gets loaded.
  drupal_load('module', 'user');
  drupal_register_shutdown_function('devel_shutdown');
}