You are here

function bootstrap_carousel_field_formatter_view in bootstrap_carousel 7

Implements hook_field_formatter_view().

File

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

Code

function bootstrap_carousel_field_formatter_view($entity_type, $entity, $field, $instance, $langcode, $items, $display) {
  $element = array();
  switch ($display['type']) {
    case 'bootstrap_carousel_default':
      foreach ($items as $delta => $item) {
        $element[$delta]['#markup'] = theme('bootstrap_carousel_field_formatter_default', $item);
      }
      break;
  }
  return $element;
}