You are here

function forena_uninstall in Forena Reports 7.3

Same name and namespace in other branches
  1. 6.2 forena.install \forena_uninstall()
  2. 6 forena.install \forena_uninstall()
  3. 7.5 forena.install \forena_uninstall()
  4. 7.4 forena.install \forena_uninstall()

Implementation of hook uninstall

File

./forena.install, line 157
Installation api for module

Code

function forena_uninstall() {

  // Delete all variables.
  variable_del('forena_default_form');
  variable_del('forena_doc_defaults');
  variable_del('forena_doc_formats');
  variable_del('forena_default_formats');
  variable_del('forena_email_override');
  variable_del('forena_input_format');
  variable_del('forena_last_report_path');
  variable_del('forena_report_repos');
  variable_del('forena_skins');
}