function content_taxonomy_options_help in Content Taxonomy 5
Implementation of hook_help().
File
- ./
content_taxonomy_options.module, line 12 - Defines a widget type for content_taxonomy for options
Code
function content_taxonomy_options_help($section) {
switch ($section) {
case 'admin/modules#description':
return t('Defines a widget type for content_taxonomy for options (selects, radios/checkboxes). <em>Note: Requires content.module.</em>');
}
}