You are here

function bootstrap_carousel_field_formatter_info in bootstrap_carousel 7

Implements hook_field_formatter_info().

File

./bootstrap_carousel.module, line 195
Bootstrap carousel module hooks.

Code

function bootstrap_carousel_field_formatter_info() {
  return array(
    'bootstrap_carousel_default' => array(
      'label' => t('Default'),
      'field types' => array(
        'bootstrap_carousel',
      ),
    ),
  );
}