You are here

function email_verify_permission in Email Verify 7.2

Same name and namespace in other branches
  1. 7 email_verify.module \email_verify_permission()

Implements hook_permission().

File

./email_verify.module, line 23
Verifies thoroughly that email addresses are correctly entered.

Code

function email_verify_permission() {
  return array(
    'bypass email verification' => array(
      'title' => t('Bypass email verification'),
      'description' => t('Allow email verification to be bypassed when performing user operations.'),
    ),
  );
}