You are here

function image_field_caption_field_attach_delete_revision in Image Field Caption 7.2

Implements hook_field_attach_delete_revision().

File

./image_field_caption.module, line 401
Provides a caption textarea for image fields.

Code

function image_field_caption_field_attach_delete_revision($entity_type, $entity) {
  list($id, $vid, $bundle) = entity_extract_ids($entity_type, $entity);
  if (isset($vid)) {
    $revision_name = 'field_image_field_caption_revision';
    db_delete($revision_name)
      ->condition('entity_type', $entity_type)
      ->condition('entity_id', $id)
      ->condition('revision_id', $vid)
      ->execute();
  }
}