You are here

function footermap_footer in footermap: a footer site map 5.2

Same name and namespace in other branches
  1. 5 footermap.module \footermap_footer()
  2. 6 footermap.module \footermap_footer()

Declare footer hook

Return value

string A string containing HTML to be inserted

File

./footermap.module, line 123
This module queries the menu for pages and makes a dynamic sitemap at the bottom of the page.

Code

function footermap_footer($main = 0) {
  if (variable_get('footer_legacy', 0) == 0) {
    return;
  }
  else {
    return _footermap_render();
  }
}