You are here

function email_verify_access_people_email_verify in Email Verify 7

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

Access callback for the page at admin/people/email_verify.

1 string reference to 'email_verify_access_people_email_verify'
email_verify_menu in ./email_verify.module
Implements hook_menu().

File

./email_verify.module, line 57
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_access_people_email_verify() {
  if (variable_get('email_verify_active', 0) && user_access('administer users')) {
    return TRUE;
  }
  return FALSE;
}