| 6 core.php | hook_boot() |
| 7 system.api.php | hook_boot() |
| 8 system.api.php | 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
Related topics
File
- modules/
system/ system.api.php, line 1805 - Hooks provided by Drupal core and the System module.
Code
<?php
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');
}
?> Login or register to post comments
Comments
For those interested, it gets
For those interested, it gets called during DRUPAL_BOOTSTRAP_PAGE_HEADER