| Versions | |
|---|---|
| 4.7 – 6 | theme_closure($main = 0) |
Execute hook_footer() which is run at the end of the page right before the close of the body tag.
$main (optional)
A string containing the results of the hook_footer() calls.
includes/
<?php
function theme_closure($main = 0) {
$footer = module_invoke_all('footer', $main);
return implode("\n", $footer);
}
?>