You are here

function commerce_bpc_uninstall in Commerce Bulk Product Creation 7.2

Same name and namespace in other branches
  1. 7 commerce_bpc.install \commerce_bpc_uninstall()

Implements hook_uninstall().

File

./commerce_bpc.install, line 10
(Un)Install hook implementations for the Commerce Bulk product creation module.

Code

function commerce_bpc_uninstall() {

  // Clean up variables.
  db_delete('variable')
    ->condition('name', 'commerce_bpc_%', 'LIKE')
    ->execute();
}