function tfa_ready in Two-factor Authentication (TFA) 7
Same name and namespace in other branches
- 6 tfa.module \tfa_ready()
Determine if TFA is properly configured and setup for an account.
1 call to tfa_ready()
- tfa_user_login in ./
tfa.module - Implements hook_user_login().
File
- ./
tfa.module, line 124 - Two-factor authentication for Drupal.
Code
function tfa_ready($account) {
$module = variable_get('tfa_channel', 'sms');
$function = $module . '_tfa_api';
// Verify channel is setup.
if (empty($module) || !function_exists($function)) {
return FALSE;
}
$channel = $function();
// Verify there is an address (phone or other method) for this account.
$function = $channel['address callback'];
if (!function_exists($function)) {
return FALSE;
}
$address = $function($account);
if (empty($address)) {
return FALSE;
}
return TRUE;
}