You are here

function bootstrap_carousel_field_presave in bootstrap_carousel 7

Implements hook_field_presave().

File

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

Code

function bootstrap_carousel_field_presave($entity_type, $entity, $field, $instance, $langcode, &$items) {
  foreach ($items as $delta => $value) {
    _bootstrap_carousel_process($items[$delta], $delta, $field, $entity);
  }
}