| 5 theme.inc | theme_closure($main = 0) |
| 6 theme.inc | theme_closure($main = 0) |
Execute hook_footer() which is run at the end of the page right before the close of the body tag.
Parameters
$main (optional):
Return value
A string containing the results of the hook_footer() calls.
Related topics
3 calls to theme_closure()
File
- includes/
theme.inc, line 825 - The theme system, which controls the output of Drupal.
Code
function theme_closure($main = 0) {
$footer = module_invoke_all('footer', $main);
return implode($footer, "\n");
}
Login or register to post comments