Runs on shutdown to clean up and display developer information.

This function is registered by devel_boot() as a shutdown function. The bulk of the work is done in devel_shutdown_real().

1 string reference to 'advagg_mod_devel_shutdown'
advagg_mod_init dans advagg_mod/advagg_mod.module
Implements hook_init().

Fichier

advagg_mod/advagg_mod.module, line 3715

Code

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