function tzfield_field_widget_info in Time Zone Field 7
Implements hook_widget_info().
File
- ./
tzfield.module, line 99 - Defines a time zone field type.
Code
function tzfield_field_widget_info() {
return array(
'tzfield_autocomplete' => array(
'label' => t('Autocomplete time zone widget'),
'field types' => array(
'tzfield',
),
'settings' => array(
'size' => 60,
),
),
);
}