You are here

function autosave_uninstall in Autosave 7.2

Same name and namespace in other branches
  1. 5.3 autosave.install \autosave_uninstall()
  2. 6.2 autosave.install \autosave_uninstall()
  3. 6 autosave.install \autosave_uninstall()
  4. 7 autosave.install \autosave_uninstall()

Implements hook_uninstall(). ().

File

./autosave.install, line 21
Install, update and uninstall functions for the autosave module.

Code

function autosave_uninstall() {
  variable_del('autosave_period');
  variable_del('autosave_hidden');
  variable_del('autosave_form_ids');
  variable_del('autosave_timeout');
  variable_del('autosave_ignore_behavior');
  foreach (array_keys(node_type_get_types()) as $type) {
    variable_del('autosave_' . $type);
  }
}