function devel_shutdown in Devel 7
Same name and namespace in other branches
- 5 devel.module \devel_shutdown()
- 6 devel.module \devel_shutdown()
Runs on shutdown to clean up and display developer information.
devel_boot() registers this function as a shutdown function. The bulk of the work is done in devel_shutdown_real().
1 string reference to 'devel_shutdown'
- devel_boot in ./
devel.module - Implements hook_boot().
File
- ./
devel.module, line 1123 - This module holds functions useful for Drupal development.
Code
function devel_shutdown() {
// Register the real shutdown function so it runs after other shutdown
// functions.
drupal_register_shutdown_function('devel_shutdown_real');
}