function uuidreference_field_widget_info in UUID reference field 7
Implements hook_field_widget_info().
File
- ./
uuidreference.module, line 86
Code
function uuidreference_field_widget_info() {
return array(
'uuidreference_textfield' => array(
'label' => t('UUID reference text field'),
'field types' => array(
'uuidreference',
),
'settings' => array(
'size' => 60,
),
),
'uuidreference_autocomplete' => array(
'label' => t('UUID reference autocomplete'),
'field types' => array(
'uuidreference',
),
'settings' => array(
'autocomplete_path' => 'uuidreference/autocomplete',
),
),
);
}