You are here

function KalturaClient::cloneRoughcut in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 793

Class

KalturaClient

Code

function cloneRoughcut($kalturaSessionUser, $entryId, $detailed = null) {
  $params = array();
  $params["entry_id"] = $entryId;
  $this
    ->addOptionalParam($params, "detailed", $detailed);
  $result = $this
    ->hit("cloneroughcut", $kalturaSessionUser, $params);
  return $result;
}