You are here

function uc_weightquote_node_delete in Ubercart 7.3

Implements hook_node_delete().

File

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

Code

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