You are here

function uc_addresses_uninstall in Ubercart Addresses 7

Same name and namespace in other branches
  1. 5.2 uc_addresses.install \uc_addresses_uninstall()
  2. 5 uc_addresses.install \uc_addresses_uninstall()
  3. 6.2 uc_addresses.install \uc_addresses_uninstall()
  4. 6 uc_addresses.install \uc_addresses_uninstall()

Implements hook_uninstall().

Deletes variables used by uc_addresses.

File

./uc_addresses.install, line 177
Install file for Ubercart Addresses.

Code

function uc_addresses_uninstall() {
  db_delete('variable')
    ->condition('name', 'uc_addresses%', 'LIKE')
    ->execute();
}