3.11.5. before_footer

This hook can be used for adding content to the pages that is displayed after the main page content, but before the page footer.

Call time:

After sending the main page content, but before sending the page footer template.

Hook input:

No input.

Hook output:

No output.

Example code:

function phorum_mod_foo_before_footer()
{
    // Add some static notification before the footer.
    print '<div style="font-size: 90%">';
    print '  For technical support, please send a mail to ';
    print '  <a href="mailto:tech@example.com">the webmaster</a>.';
    print '</div>';
}