You are here

function tfa_uninstall in Two-factor Authentication (TFA) 6

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

Implementation of hook_uninstall().

File

./tfa.install, line 57

Code

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