You are here

function footermap_help in footermap: a footer site map 7

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. 6 footermap.module \footermap_help()

File

./footermap.module, line 16

Code

function footermap_help($path, $arg) {
  switch ($path) {
    case 'admin/structure/footermap':
      return '<p>' . t('You must enable the footermap block within Drupal\'s block management system: !link', array(
        '!link' => l('admin/structure/block', 'admin/structure/block'),
      )) . '</p>';
      break;
    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;
  }
}