function timefield_field_widget_info in Timefield 7
Implements hook_field_widget_info().
File
- ./
timefield.module, line 291 - Defines a Field API field for time
Code
function timefield_field_widget_info() {
$widgets = array();
$widgets['timefield_standard'] = array(
'label' => t('Time Field'),
'description' => t('Input Form for a Time Field'),
'field types' => array(
'timefield',
),
'settings' => array(
'label_position' => 'above',
),
);
return $widgets;
}