You are here

function hosting_client_delete in Hosting 5

Same name and namespace in other branches
  1. 6.2 client/hosting_client.module \hosting_client_delete()
  2. 7.4 client/hosting_client.module \hosting_client_delete()
  3. 7.3 client/hosting_client.module \hosting_client_delete()

Implementation of hook_delete().

File

client/hosting_client.module, line 313

Code

function hosting_client_delete($node) {
  db_query('DELETE FROM {hosting_client} WHERE nid = %d', $node->nid);
}