function bootstrap_carousel_field_widget_info in bootstrap_carousel 7
Implements hook_field_widget_info().
File
- ./
bootstrap_carousel.module, line 75 - Bootstrap carousel module hooks.
Code
function bootstrap_carousel_field_widget_info() {
return array(
'bootstrap_carousel_widget' => array(
'label' => t('Default'),
'field types' => array(
'bootstrap_carousel',
),
'behaviors' => array(
'multiple values' => FIELD_BEHAVIOR_DEFAULT,
'default value' => FIELD_BEHAVIOR_DEFAULT,
),
),
);
}