You are here

function email_verify_disable in Email Verify 7.2

Same name and namespace in other branches
  1. 7 email_verify.install \email_verify_disable()

Implements hook_disable().

File

./email_verify.install, line 39
Install, update and uninstall functions for this module.

Code

function email_verify_disable() {
  $email_verify_active = variable_get('email_verify_active', NULL);
  if ($email_verify_active !== NULL) {

    // Inactivate this module.
    variable_set('email_verify_active', FALSE);
  }
}