You are here

function autologout_uninstall in Automated Logout 6.2

Same name and namespace in other branches
  1. 5 autologout.install \autologout_uninstall()
  2. 6.4 autologout.install \autologout_uninstall()
  3. 6 autologout.install \autologout_uninstall()
  4. 6.3 autologout.install \autologout_uninstall()
  5. 7.2 autologout.install \autologout_uninstall()
  6. 7.4 autologout.install \autologout_uninstall()

Implementation of hook_uninstall().

File

./autologout.install, line 25
Install file for Automated Logout Module

Code

function autologout_uninstall() {

  // Remove table.
  drupal_uninstall_schema('autologout');
  variable_del('autologout');
  variable_del('autologout_one_session');
}