public function MiniorangeUser::search in Google Authenticator / 2 Factor Authentication - 2FA 7
File
- classes/
User.php, line 44
Class
Code
public function search() {
$apiKey = variable_get('mo_auth_customer_api_key', NULL);
if (is_null($this->customerId) || is_null($apiKey)) {
return FALSE;
}
$usersAPIHandler = new UsersAPIHandler($this->customerId, $apiKey);
$response = $usersAPIHandler
->search($this);
}