You are here

function footermap_help in footermap: a footer site map 5.2

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

Display help and module information

Parameters

section which sectino of the site we're displaying:

Return value

help text for section

File

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

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;
}