You are here

function content_taxonomy_help in Content Taxonomy 5

Same name and namespace in other branches
  1. 6.2 content_taxonomy.module \content_taxonomy_help()
  2. 6 content_taxonomy.module \content_taxonomy_help()

Implementation of hook_help().

File

./content_taxonomy.module, line 12
Defines a field type for referencing a taxonomy term.

Code

function content_taxonomy_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Defines a field type for referencing a taxonomy term. <em>Note: Requires content.module.</em>');
  }
}