You are here

function nodewords_admin_help in Nodewords: D6 Meta Tags 6.3

Same name and namespace in other branches
  1. 6.2 nodewords_admin/nodewords_admin.module \nodewords_admin_help()

Implemenation of hook_help().

File

nodewords_admin/nodewords_admin.module, line 79
Administration interface for Nodewords.

Code

function nodewords_admin_help($path, $arg) {
  switch ($path) {
    case 'admin/content/nodewords/meta-tags':
      $output = '<p>' . t('On this page you can enter the default values for the meta tags.') . '</p>';
      break;
    case 'admin/content/nodewords/meta-tags/errorpage_403':
      $output = '<p>' . t('On this page you can enter the meta tags for the <q>access denied</q> error page of your site.') . '</p>';
      break;
    case 'admin/content/nodewords/meta-tags/errorpage_404':
      $output = '<p>' . t('On this page you can enter the meta tags for the <q>page not found</q> error page of your site.') . '</p>';
      break;
    case 'admin/content/nodewords/meta-tags/frontpage':
      $output = '<p>' . t('On this page you can enter the meta tags for the front page of your site. If the front page is a node, the meta tags edit fields will not appear in the node edit form.') . '</p>';
      break;
    default:
      $output = '';
      break;
  }
  return $output;
}