You are here

function hosting_site_data_delete_revision in Hosting 6.2

Implementation of hook_delete_revision()

1 call to hosting_site_data_delete_revision()
hosting_site_data_nodeapi in example/site_data/hosting_site_data.module
Implementation of hook_nodeapi()

File

example/site_data/hosting_site_data.module, line 58

Code

function hosting_site_data_delete_revision($node) {
  db_query("DELETE FROM {hosting_site_data} WHERE vid=%d", $node->vid);
}