You are here

function tfa_uninstall in Two-factor Authentication (TFA) 7

Same name and namespace in other branches
  1. 6 tfa.install \tfa_uninstall()
  2. 7.2 tfa.install \tfa_uninstall()

Implements hook_uninstall().

File

./tfa.install, line 50
tfa.install

Code

function tfa_uninstall() {
  variable_del('tfa_hourly_threshold');
  variable_del('tfa_send_message');
  variable_del('tfa_code_length');
  variable_del('tfa_channel');
  variable_del('tfa_phone_field');
}