You are here

function footermap_help in footermap: a footer site map 6

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

File

./footermap.module, line 16

Code

function footermap_help($path, $arg) {
  switch ($path) {

    //TODO: add target link to block system help page
    case 'admin/help#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>';
      break;
  }
}