You are here

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

File

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

Class

AuthenticationType
@file This class represents authentication type.

Namespace

Drupal\miniorange_2fa

Code

public static $PUSH_NOTIFICATIONS = array(
  'id' => 'push-notifications',
  'name' => 'Push Notifications',
  'code' => 'PUSH NOTIFICATIONS',
  'description' => 'You will receive a push notification on your phone. You have to <em>ACCEPT</em> or <em>DENY</em> it to login. Supported in Smartphones only.',
  'supported-for' => array(
    'Smartphones',
  ),
  'challenge' => TRUE,
  'oob' => TRUE,
  'test-route' => 'miniorange_2fa.test_push_notifications',
  'configure-route' => 'miniorange_2fa.configure_push_notification_authentication',
);