You are here

function content_taxonomy_autocomplete_help in Content Taxonomy 5

Implementation of hook_help().

File

./content_taxonomy_autocomplete.module, line 11
Defines a widget type for content_taxonomy with autocomplete

Code

function content_taxonomy_autocomplete_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Defines a widget type for content_taxonomy with autocomplete. <em>Note: Requires content.module.</em>');
  }
}