You are here

function clients_uninstall in Web Service Clients 6.2

Same name and namespace in other branches
  1. 6 clients.install \clients_uninstall()
  2. 7 clients.install \clients_uninstall()

Implementation of hook_uninstall().

File

./clients.install, line 17
Install, update and uninstall functions for the Clients module.

Code

function clients_uninstall() {
  drupal_uninstall_schema('clients');

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