function devel_shutdown

Same name in other branches
  1. 6.x-1.x 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

Code

function devel_shutdown() {
    // Register the real shutdown function so it runs after other shutdown
    // functions.
    drupal_register_shutdown_function('devel_shutdown_real');
}