function taxonomy_uuid_entity_features_rebuild_alter in UUID Features Integration 7
Implements hook_uuid_entity_features_rebuild_alter().
File
- includes/modules/ taxonomy.inc, line 36 
- uuid_node hooks on behalf of the taxonomy module.
Code
function taxonomy_uuid_entity_features_rebuild_alter($entity_type, &$entity, $data, $module) {
  $fields = uuid_features_get_field_items_iterator($entity, $entity_type, 'taxonomy_term_reference');
  uuid_features_fetch_uuid_references($fields, 'taxonomy_term', array(
    'tid' => 'tid',
  ));
}