You are here

function KalturaClient::cloneKShow in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 783

Class

KalturaClient

Code

function cloneKShow($kalturaSessionUser, $kshowId, $detailed = null) {
  $params = array();
  $params["kshow_id"] = $kshowId;
  $this
    ->addOptionalParam($params, "detailed", $detailed);
  $result = $this
    ->hit("clonekshow", $kalturaSessionUser, $params);
  return $result;
}