You are here

function cf_error_uninstall in Common Functionality 7.2

Implementation of hook_uninstall().

File

modules/cf_error/cf_error.install, line 30
Install file for cf_error module.

Code

function cf_error_uninstall() {

  // cf_settings is treated as a soft-dependency and so manually delete variables when cf_settings is disabled.
  if (!module_exists('cf_settings')) {
    variable_del('cf_error_backtrace_show');
  }
}