| Versions | |
|---|---|
| 4.7 – 7 | drupal_page_footer() |
Perform end-of-request tasks.
This function sets the page cache if appropriate, and allows modules to react to the closing of the page by calling hook_exit().
includes/
<?php
function drupal_page_footer() {
if (variable_get('cache', 0)) {
page_set_cache();
}
module_invoke_all('exit');
}
?>