function zoomapi_get_zoom_user_id in Zoom API 7
Same name and namespace in other branches
- 7.2 zoomapi.module \zoomapi_get_zoom_user_id()
Get account zoom user ID.
Parameters
object $account: The Drupal user account.
Return value
string The zoom user ID.
1 call to zoomapi_get_zoom_user_id()
- zoomapi_recordings_get_list in ./
zoomapi.module - Get account cloud recordings.
File
- ./
zoomapi.module, line 104 - Main file for the Zoom API module.
Code
function zoomapi_get_zoom_user_id($account) {
return !empty($account->data['zoomapi_user_id']) ? $account->data['zoomapi_user_id'] : '';
}