function hosting_client_node_delete in Hosting 7.4
Same name and namespace in other branches
- 7.3 client/hosting_client.module \hosting_client_node_delete()
Implements hook_node_delete().
File
- client/
hosting_client.module, line 1106
Code
function hosting_client_node_delete($node) {
if ($node->type == 'platform') {
db_delete('hosting_platform_client_access')
->condition('pid', $node->nid)
->execute();
}
}