function readonlymode_uninstall in Read only mode 7
Same name and namespace in other branches
- 6 readonlymode.install \readonlymode_uninstall()
Implements hook_uninstall().
File
- ./
readonlymode.install, line 19 - Update hook and uninstaller for the Read Only Mode module
Code
function readonlymode_uninstall() {
variable_del('site_readonly');
variable_del('site_readonly_forms_allowed');
variable_del('site_readonly_forms_viewonly');
variable_del('site_readonly_message_form_not_saved');
variable_del('site_readonly_message');
variable_del('site_readonly_url');
}