You are here

function crypt_blowfish_uninstall in Web Service Clients 6.2

Same name and namespace in other branches
  1. 6 backends/clients_drupal/crypt_blowfish/crypt_blowfish.install \crypt_blowfish_uninstall()
  2. 7.3 connections/clients_drupal/crypt_blowfish/crypt_blowfish.install \crypt_blowfish_uninstall()
  3. 7 backends/clients_drupal/crypt_blowfish/crypt_blowfish.install \crypt_blowfish_uninstall()
  4. 7.2 connections/clients_drupal/crypt_blowfish/crypt_blowfish.install \crypt_blowfish_uninstall()

Implementation of hook_uninstall().

File

connections/clients_drupal/crypt_blowfish/crypt_blowfish.install, line 17
Checks blowfish configuration - directory and password are set

Code

function crypt_blowfish_uninstall() {

  // clean up any variables created by module
  $module_variables = array(
    'crypt_blowfish_cryptdir',
  );
  foreach ($module_variables as $module_variable) {
    variable_del($module_variable);
  }
}