You are here

function autoload_exit in Autoload 6.2

Implements hook_exit().

File

./autoload.module, line 36

Code

function autoload_exit() {

  // Check if this is a full bootstrap, and if so, the write the lookup cache.
  if (function_exists('drupal_page_footer')) {
    _autoload_registry_check_code(AUTOLOAD_REGISTRY_WRITE_LOOKUP_CACHE);
  }
}