You are here

function zoomapi_format_timestamp_local_server in Zoom API 7.2

Format datetime helper.

File

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

Code

function zoomapi_format_timestamp_local_server($timestamp) {
  $timezone = variable_get('date_default_timezone', @date_default_timezone_get());
  return zoomapi_format_timestamp($timestamp, $timezone);
}