You are here

public static property AuthenticationType::$SMS_AND_EMAIL in Google Authenticator / 2 Factor Authentication - 2FA 8.2

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

File

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

Class

AuthenticationType
@file This class represents authentication type.

Namespace

Drupal\miniorange_2fa

Code

public static $SMS_AND_EMAIL = array(
  'id' => 'otp-over-sms-and-email',
  'name' => 'OTP Over SMS and EMAIL',
  'code' => 'SMS AND EMAIL',
  'description' => 'You will receive a one time passcode via SMS and email. You have to enter the otp to login. Supported in Desktops, Laptops, Smartphones, Feature Phones.',
  'supported-for' => array(
    'Laptops Phones',
  ),
  'challenge' => TRUE,
  'oob' => FALSE,
  'test-route' => 'miniorange_2fa.test_otp_over_sms_and_email',
  'configure-route' => 'miniorange_2fa.configure_otp_over_sms_authentication',
);