function interval_field_widget_info in Interval Field 7
Implements hook_field_widget_info().
See also
File
- ./
interval.module, line 198 - Defines an interval field @copyright Copyright(c) 2011 Rowlands Group @license GPL v2+ http://www.fsf.org/licensing/licenses/gpl.html @author Lee Rowlands leerowlands at rowlandsgroup dot com
Code
function interval_field_widget_info() {
return array(
'interval_default' => array(
'label' => t('Interval and Period'),
'field types' => array(
'interval',
),
),
);
}