function image_field_update

7.x image.field.inc image_field_update($entity_type, $entity, $field, $instance, $langcode, &$items)

Implements hook_field_update().

File

drupal-7.x/modules/image/image.field.inc, line 256
Implement an image field, based on the file module's file field.

Code

function image_field_update($entity_type, $entity, $field, $instance, $langcode, &$items) {
  file_field_update($entity_type, $entity, $field, $instance, $langcode, $items);
}