taxonomy_field_widget_info
- Versions
- 7
taxonomy_field_widget_info()
Implements hook_field_widget_info().
Code
modules/taxonomy/taxonomy.module, line 986
<?php
function taxonomy_field_widget_info() {
return array(
'taxonomy_autocomplete' => array(
'label' => t('Autocomplete term widget (tagging)'),
'field types' => array('taxonomy_term'),
'settings' => array(
'size' => 60,
'autocomplete_path' => 'taxonomy/autocomplete',
),
'behaviors' => array(
'multiple values' => FIELD_BEHAVIOR_CUSTOM,
),
),
);
}
?>Login or register to post comments 