function content_taxonomy_content_multigroup_allowed_widgets in Content Taxonomy 6
Same name and namespace in other branches
- 6.2 content_taxonomy.module \content_taxonomy_content_multigroup_allowed_widgets()
Implementation of hook_content_multigroup_allowed_widgets().
File
- ./
content_taxonomy.module, line 523 - Defines a field type for referencing a taxonomy term.
Code
function content_taxonomy_content_multigroup_allowed_widgets() {
return array(
'content_taxonomy_autocomplete',
'content_taxonomy_options',
'content_taxonomy_select',
);
}