You are here

function clients_feeds_uninstall in Web Service Clients 6

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

Implementation of hook_uninstall().

File

clients/clients_feeds/clients_feeds.install, line 17
@author Django Beatty - adub 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);
  }
}