1 drupal.inc | &drupal_register_shutdown_function($callback = NULL) |
Registers a function for execution on shutdown.
Deprecated
since 1.0.0
See also
backdrop_register_shutdown_function()
Related topics
File
- core/
includes/ drupal.inc, line 517 - Contains constants and function wrappers for Drupal 7.x compatibility.
Code
function &drupal_register_shutdown_function($callback = NULL) {
return backdrop_register_shutdown_function($callback);
}