You are here

function zoomapi_set_transfer_options in Zoom API 7.2

Set a transfer key that can be retreived by the progress function.

2 calls to zoomapi_set_transfer_options()
zoomapi_api_download_recording in ./zoomapi.api.inc
Download Recording.
zoomapi_get_transfer_options in ./zoomapi.module
Get a transfer key that can be retrieved by the progress function.

File

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

Code

function zoomapi_set_transfer_options($options = NULL) {
  static $current = FALSE;
  if (isset($options)) {
    $current = $options;
  }
  return $current;
}