You are here

function zoomapi_format_timestamp_local_user in Zoom API 7.2

Format datetime helper.

File

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

Code

function zoomapi_format_timestamp_local_user($timestamp, $account = NULL) {
  $timezone = zoomapi_get_account_timezone($account);
  return zoomapi_format_timestamp($timestamp, $timezone);
}