You are here

function gdpr_consent_uninstall in GDPR Consent 7

Implements hook_uninstall().

File

./gdpr_consent.install, line 130
Installation and update functions for the Consent module.

Code

function gdpr_consent_uninstall() {
  variable_del('gdpr_consent_display');
  variable_del('gdpr_consent_accept_every_login');
  variable_del('gdpr_consent_link_target');
  variable_del('gdpr_consent_disallow_without');
  variable_del('gdpr_consent_nag_message');
  variable_del('gdpr_consent_block_admin');
}