You are here

function services_client_entity_update in Services Client 7.2

Implements hook_entity_update().

File

./services_client.module, line 231

Code

function services_client_entity_update($entity, $type) {
  if (module_exists('reference_uuid')) {
    reference_uuid_entity_load(array(
      $entity,
    ), $type);
  }
  services_client_process_events('save', $entity, $type);
}