You are here

function clients_feeds_uninstall in Web Service Clients 7

Same name and namespace in other branches
  1. 6 clients/clients_feeds/clients_feeds.install \clients_feeds_uninstall()

Implementation of hook_uninstall().

File

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

Code

function clients_feeds_uninstall() {

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