function bootstrap_carousel_field_info in bootstrap_carousel 7
Implements hook_field_info().
File
- ./
bootstrap_carousel.module, line 48 - Bootstrap carousel module hooks.
Code
function bootstrap_carousel_field_info() {
return array(
'bootstrap_carousel' => array(
'label' => t('Bootstrap carousel'),
'description' => t('The slides of the carousel'),
'default_widget' => 'bootstrap_carousel_widget',
'default_formatter' => 'bootstrap_carousel_formatter',
'property_type' => 'bootstrap_carousel',
'property_callbacks' => array(
'bootstrap_carousel_property_info_callback',
),
'no_ui' => TRUE,
),
);
}