function clients_uninstall in Web Service Clients 7
Same name and namespace in other branches
- 6.2 clients.install \clients_uninstall()
- 6 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);
  }
}