You are here

function commerce_node_checkout_uninstall in Commerce Node Checkout 7

Implements hook_uninstall().

File

./commerce_node_checkout.install, line 64
Provides install, update, schema and uninstall hooks for the module

Code

function commerce_node_checkout_uninstall() {

  // Remove the fields
  foreach (_commerce_node_checkout_installed_fields() as $name => $field) {
    field_delete_field($name);
  }
}