You are here

function content_taxonomy_help in Content Taxonomy 6

Same name and namespace in other branches
  1. 5 content_taxonomy.module \content_taxonomy_help()
  2. 6.2 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($path, $arg) {
  switch ($path) {
    case 'admin/help#content_taxonomy':
      return '<p>' . t('Defines a CCK field type for referencing taxonomy terms. The fields are independent from vocabulary settings and can be configured through the CCK admin field pages. The Content Taxonomy Module provides different widget types, at the moment including Option Widgets (Radios / Checkboxes, Selects), Autocompletes, Tree). The widget modules have to be enabled separately.') . '</p>';
  }
}