You are here

function KalturaClient::appendEntryToRoughcut in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 761

Class

KalturaClient

Code

function appendEntryToRoughcut($kalturaSessionUser, $entryId, $kshowId, $showEntryId = null) {
  $params = array();
  $params["entry_id"] = $entryId;
  $params["kshow_id"] = $kshowId;
  $this
    ->addOptionalParam($params, "show_entry_id", $showEntryId);
  $result = $this
    ->hit("appendentrytoroughcut", $kalturaSessionUser, $params);
  return $result;
}