You are here

function services_client_entity_delete in Services Client 7.2

Implements hook_entity_delete().

File

./services_client.module, line 241

Code

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