You are here

function ga_login_uninstall in Google Authenticator login 6

Same name and namespace in other branches
  1. 7 ga_login.install \ga_login_uninstall()

Implements hook_uninstall().

File

./ga_login.install, line 46
Install, update and uninstall functions for the ga_login module.

Code

function ga_login_uninstall() {
  drupal_uninstall_schema('ga_login');
  variable_del('ga_login_textname');
  variable_del('ga_login_textid');
  variable_del('ga_login_totp_skew');
  variable_del('ga_login_hotp_skew');
}