function footermap_help in footermap: a footer site map 5.2
Same name and namespace in other branches
- 8 footermap.module \footermap_help()
- 5 footermap.module \footermap_help()
- 6 footermap.module \footermap_help()
- 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;
}