drupal_page_footer
includes/common.inc, строка 1579
- Версии
- 5 – 6
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()
.
Код
<?php
function drupal_page_footer() {
if (variable_get('cache', CACHE_DISABLED) != CACHE_DISABLED) {
page_set_cache();
}
module_invoke_all('exit');
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии