You are here

public static property AuthenticationType::$EMAIL_VERIFICATION in Google Authenticator / 2 Factor Authentication - 2FA 8

Same name and namespace in other branches
  1. 8.2 src/AuthenticationType.php \Drupal\miniorange_2fa\AuthenticationType::EMAIL_VERIFICATION

File

src/AuthenticationType.php, line 75
Contains Authentication type class.

Class

AuthenticationType
@file This class represents authentication type.

Namespace

Drupal\miniorange_2fa

Code

public static $EMAIL_VERIFICATION = array(
  'id' => 'email-verification',
  'name' => 'Email Verification',
  'code' => 'OUT OF BAND EMAIL',
  'description' => 'You will receive an email with link. You have to click the <em>ACCEPT</em> or <em>DENY</em> link to verify your email. Supported in Desktops, Laptops, Smartphones.',
  'supported-for' => array(
    'Laptops',
  ),
  'challenge' => TRUE,
  'oob' => TRUE,
);