You are here

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

File

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

Class

AuthenticationType
@file This class represents authentication type.

Namespace

Drupal\miniorange_2fa

Code

public static $SOFT_TOKEN = array(
  'id' => 'soft-token',
  'name' => 'Soft Token',
  'code' => 'SOFT TOKEN',
  'description' => 'You have to enter passcode generated by <em>miniOrange Authenticator App</em> to login. Supported in Smartphones only.',
  'supported-for' => array(
    'Smartphones',
  ),
  'challenge' => FALSE,
  'oob' => FALSE,
  'test-route' => 'miniorange_2fa.test_soft_token',
  'configure-route' => 'miniorange_2fa.configure_soft_token_authentication',
);