You are here

function file_entity_revisions_uuid_entity_features_export_alter in UUID Features Integration 7

Implements hook_uuid_entity_features_export_alter().

File

includes/modules/file_entity_revisions.inc, line 10
uuid features hooks on behalf of the file entity module.

Code

function file_entity_revisions_uuid_entity_features_export_alter($entity_type, &$data, $entity, $module) {
  if ($entity_type != 'file') {
    return;
  }

  // Remove revision id.
  unset($data->vid);
}