You are here

function asset_uuid_entity_uuid_load in Asset 7

Implements hook_entity_uuid_load().

File

modules/asset_uuid/asset_uuid.module, line 20
Implement UUID/Entity hooks for integrating with deploy and other modules.

Code

function asset_uuid_entity_uuid_load(&$entities, $entity_type) {
  if ($entity_type == 'asset') {
    entity_property_id_to_uuid($entities, 'asset', 'aid');
  }
}