You are here

function KalturaClient::updateEntryThumbnail in Kaltura 5

Same name and namespace in other branches
  1. 6 kaltura_client/kaltura_client.php \KalturaClient::updateEntryThumbnail()

File

kaltura_client/kaltura_client.php, line 1845

Class

KalturaClient

Code

function updateEntryThumbnail($kalturaSessionUser, $entryId, $sourceEntryId = null, $timeOffset = null) {
  $params = array();
  $params["entry_id"] = $entryId;
  $this
    ->addOptionalParam($params, "source_entry_id", $sourceEntryId);
  $this
    ->addOptionalParam($params, "time_offset", $timeOffset);
  $result = $this
    ->hit("updateentrythumbnail", $kalturaSessionUser, $params);
  return $result;
}