function forena_uninstall in Forena Reports 7.4
Same name and namespace in other branches
- 6.2 forena.install \forena_uninstall()
- 6 forena.install \forena_uninstall()
- 7.5 forena.install \forena_uninstall()
- 7.3 forena.install \forena_uninstall()
Implementation of hook uninstall
File
- ./
forena.install, line 51 - 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');
}