You are here

function email_verify_permission in Email Verify 7

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

Implements hook_permission().

File

./email_verify.module, line 22
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_permission() {
  return array(
    'bypass email verification' => array(
      'title' => t('Bypass email verification'),
      'description' => t('Allow email verification to be bypassed when performing user operations.'),
    ),
  );
}