You are here

function commerce_invoice_uninstall in Commerce Invoice 7.2

Implements hook_uninstall().

File

./commerce_invoice.install, line 254
Install and uninstall functions for the Commerce Invoice module.

Code

function commerce_invoice_uninstall() {
  drupal_load('module', 'commerce');
  commerce_delete_instances('commerce_invoice');
  variable_del('commerce_invoice_default_number_pattern');
  variable_del('commerce_invoice_net_d');
}