You are here

function mollie_payment_uninstall in Mollie Payment 7.2

Implements hook_uninstall().

File

./mollie_payment.install, line 46
Install and update hooks for Mollie Payment.

Code

function mollie_payment_uninstall() {

  // Delete variables set by Mollie Payment.
  variable_del('mollie_payment_default_access_token');
  variable_del('mollie_payment_default_api_key_live');
  variable_del('mollie_payment_default_api_key_test');
  variable_del('mollie_payment_suppress_warnings');
}