function active_tags_field_widget_info in Active Tags 7.2
Implements hook_field_widget_info().
File
- ./
active_tags.module, line 11 - Active Tags widget for free tagging taxonomies
Code
function active_tags_field_widget_info() {
return array(
'active_tags_taxonomy_autocomplete' => array(
'label' => t('Active Tags autocomplete term widget (tagging)'),
'field types' => array(
'taxonomy_term_reference',
),
'settings' => array(
'size' => 60,
'autocomplete_path' => 'taxonomy/autocomplete',
'mode' => 'single',
),
'behaviors' => array(
'multiple values' => FIELD_BEHAVIOR_CUSTOM,
),
),
);
}