You are here

public static property AuthenticationType::$SMS 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

File

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

Class

AuthenticationType
@file This class represents authentication type.

Namespace

Drupal\miniorange_2fa

Code

public static $SMS = array(
  'id' => 'otp-over-sms',
  'name' => 'OTP Over SMS',
  'code' => 'SMS',
  'description' => 'You will receive a OTP via SMS on your phone. You have to enter the otp to authenticate yourself. Supported in Smartphones, Feature Phones.',
  'supported-for' => array(
    'Feature Phones',
  ),
  'challenge' => TRUE,
  'oob' => FALSE,
  'test-route' => 'miniorange_2fa.test_otp_over_sms',
  'configure-route' => 'miniorange_2fa.configure_otp_over_sms_authentication',
);