You are here

function community_tags_help in Community Tags 6.2

Same name and namespace in other branches
  1. 5 community_tags.module \community_tags_help()
  2. 6 community_tags.module \community_tags_help()
  3. 7 community_tags.module \community_tags_help()

Implementation of hook_help().

File

./community_tags.module, line 28
Implements community tagging of nodes using a specific vocabulary for Drupal v6.x

Code

function community_tags_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/community-tags':
      return t('To set up community tagging, you must first <a href="@taxonomy">create a normal free tagged vocabulary</a>. Then activate community tagging on such a vocabulary below, and set the <a href="@workflow">workflow options</a> for node types to control how users can tag nodes.', array(
        '@taxonomy' => url('admin/content/taxonomy'),
        '@workflow' => url('admin/content/types'),
      ));
      break;
  }
}