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