You are here

function footermap_help in footermap: a footer site map 5

Same name and namespace in other branches
  1. 8 footermap.module \footermap_help()
  2. 5.2 footermap.module \footermap_help()
  3. 6 footermap.module \footermap_help()
  4. 7 footermap.module \footermap_help()

File

./footermap.module, line 18

Code

function footermap_help($section = '') {
  $output = '';
  switch ($section) {
    case "admin/modules#description":
      $output = t("Displays a sitemap at the bottom of the page");
      break;
  }
  return $output;
}