You are here

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

File

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

Class

AuthenticationType
@file This class represents authentication type.

Namespace

Drupal\miniorange_2fa

Code

public static $GOOGLE_AUTHENTICATOR = array(
  'id' => 'google-authenticator',
  'name' => 'Google Authenticator',
  'code' => 'GOOGLE AUTHENTICATOR',
  'description' => 'You have to scan the QR code from <em>Google Authenticator App</em> and enter code generated by app to login. Supported in Smartphones only.',
  'supported-for' => array(
    'Smartphones',
  ),
  'challenge' => FALSE,
  'oob' => FALSE,
  'test-route' => 'miniorange_2fa.test_google_authenticator',
  'configure-route' => 'miniorange_2fa.configure_google_authenticator',
);