You are here

function simple_ldap_sso_uninstall in Simple LDAP 7.2

Same name and namespace in other branches
  1. 7 simple_ldap_sso/simple_ldap_sso.install \simple_ldap_sso_uninstall()

Implements hook_uninstall().

File

simple_ldap_sso/simple_ldap_sso.install, line 11
Simple LDAP SSO install/update hooks.

Code

function simple_ldap_sso_uninstall() {
  variable_del('simple_ldap_sso_binddn');
  variable_del('simple_ldap_sso_bindpw');
  variable_del('simple_ldap_sso_encryption_key');
  variable_del('simple_ldap_sso_attribute_sid');
  variable_del('simple_ldap_sso_hashing_algorithm');
  variable_del('simple_ldap_sso_flood_limit');
  variable_del('simple_ldap_sso_flood_window');
}