You are here

function email_verify_disable in Email Verify 7

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

Implements hook_disable().

File

./email_verify.install, line 31
Install, update and uninstall related functions for the 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);
  }
}