function KalturaClient::appendEntryToRoughcut in Kaltura 6
Same name and namespace in other branches
- 5 kaltura_client/kaltura_client.php \KalturaClient::appendEntryToRoughcut()
File
- kaltura_client/
kaltura_client.php, line 761
Class
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;
}