You are here

function theme_bootstrap_carousel_field_formatter_default in bootstrap_carousel 7

Renders the bootstrap_carousel formatter.

1 theme call to theme_bootstrap_carousel_field_formatter_default()
bootstrap_carousel_field_formatter_view in ./bootstrap_carousel.module
Implements hook_field_formatter_view().

File

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

Code

function theme_bootstrap_carousel_field_formatter_default($item) {
  return "{$item['carousel_text']}: {$item['carousel_image']}";
}