You are here

function pdf_to_image_field_update in PDF to ImageField 7.2

Implements hook_field_update().

File

./pdf_to_image.module, line 120
Implement a pdf field, based on the file module's file field.

Code

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