You are here

function commerce_product_reference_uuid_entity_features_rebuild_alter in UUID Features Integration 7

Implements hook_uuid_entity_features_rebuild_alter().

File

includes/modules/commerce_product_reference.inc, line 41
uuid features hooks on behalf of the commerce_product_reference module.

Code

function commerce_product_reference_uuid_entity_features_rebuild_alter($entity_type, &$entity, $data, $module) {
  $fields = uuid_features_get_field_items_iterator($entity, $entity_type, 'commerce_product_reference');
  uuid_features_fetch_uuid_references($fields, 'commerce_product', array(
    'product_id' => 'product_id',
  ));
}