function 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 the theme, modules, or most include files are loaded into memory. It happens while Drupal is still in bootstrap mode.

See also

hook_init()

Related topics

1 string reference to 'hook_boot'
4 functions implement hook_boot()
2 invocations of hook_boot()

File

drupal/modules/system/system.api.php, line 1875
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');
}