You are here

function email_verify_activated in Email Verify 7

Same name and namespace in other branches
  1. 7.2 email_verify.module \email_verify_activated()

Determine if Email Verify is enabled.

Return value

boolean Indicates whether the module is enabled or not.

1 call to email_verify_activated()
email_verify_admin_settings_submit in ./email_verify.admin.inc
Form submit function.

File

./email_verify.module, line 151
Verifies thoroughly that email addresses are correctly entered Copyright: Daniel Bonniot <bonniot@users.sourceforge.net> License: GNU GPL v2 or later

Code

function email_verify_activated() {
  return (bool) variable_get('email_verify_active', 0);
}