function drupal_page_footer

Same name and namespace in other branches
  1. 7.x drupal-7.x/includes/common.inc \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().

1 call to drupal_page_footer()
index.php in drupal-6.x/index.php
The PHP page that serves all page requests on a Drupal installation.

Archivo

drupal-6.x/includes/common.inc, line 1667
Common functions that many Drupal modules will need to reference.

Código

function drupal_page_footer() {
  if (variable_get('cache', CACHE_DISABLED) != CACHE_DISABLED) {
    page_set_cache();
  }

  module_invoke_all('exit');
}