You are here

function tfa_test_send in Two-factor Authentication (TFA) 7

1 string reference to 'tfa_test_send'
tfa_test_tfa_api in tests/tfa_test.module
Implements hook_tfa_api().

File

tests/tfa_test.module, line 16

Code

function tfa_test_send($account, $code, $message) {
  watchdog('tfa_test', 'TFA Test send for @name: @message @code', array(
    '@name' => $account->name,
    '@message' => $message,
    '@code' => $code,
  ));
  return TRUE;
}