You are here

function uc_weightquote_node_revision_delete in Ubercart 7.3

Implements hook_node_revision_delete().

File

shipping/uc_weightquote/uc_weightquote.module, line 152
Shipping quote module that defines a weight-based shipping rate for each product.

Code

function uc_weightquote_node_revision_delete($node) {
  db_delete('uc_weightquote_products')
    ->condition('vid', $node->vid)
    ->execute();
}