You are here

function zoomapi_get_zoom_user_email in Zoom API 7

Same name and namespace in other branches
  1. 7.2 zoomapi.module \zoomapi_get_zoom_user_email()

Get account zoom user email.

Parameters

object $account: The Drupal user account.

Return value

string The zoom user email.

File

./zoomapi.module, line 117
Main file for the Zoom API module.

Code

function zoomapi_get_zoom_user_email($account) {
  return !empty($account->data['zoomapi_user_email']) ? $account->data['zoomapi_user_email'] : '';
}