You are here

function footermap_help in footermap: a footer site map 8

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

Implements hook_help().

File

./footermap.module, line 16
Footermap module file.

Code

function footermap_help($path, $arg) {
  if ($path === 'help.page.footermap') {
    return '<p>' . t('Displays a dynamic, flexible sitemap at the bottom of a page via the Drupal block system. This is routinely used as a way of providing quick links at the bottom of the page. It is not advised to generate a full site map at the footer without caching.') . '</p>';
  }
}