You are here

function saml_sp_uninstall in SAML Service Provider 7.2

Same name and namespace in other branches
  1. 7.8 saml_sp.install \saml_sp_uninstall()
  2. 7.3 saml_sp.install \saml_sp_uninstall()

Implements hook_uninstall().

Cleans up variables.

File

./saml_sp.install, line 147
Hook_requirements for the SAML Service Provider module.

Code

function saml_sp_uninstall() {
  variable_del('saml_sp_drupal_login__idp');
  variable_del('saml_sp__cert_location');
  variable_del('saml_sp__key_location');
  variable_del('saml_sp__security');
  variable_del('saml_sp__strict');
  variable_del('saml_sp__organization');
  variable_del('saml_sp__contact');
}