function 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
Code
function devel_shutdown() {
// Register the real shutdown function so it runs after other shutdown
// functions.
drupal_register_shutdown_function('devel_shutdown_real');
}