function hosting_ip_delete in Hosting 6.2
IP Utility function for hook_delete.
2 calls to hosting_ip_delete()
- hosting_ip_delete_revision in server/
hosting.ip.inc - IP Utility function for hook_delete_revision.
- hosting_server_delete in server/
hosting_server.module - Implementation of hook_delete().
File
- server/
hosting.ip.inc, line 91 - General IP address CRUD routines.
Code
function hosting_ip_delete($node) {
db_query("DELETE FROM {hosting_ip_addresses} WHERE nid=%d", $node->nid);
}