function KalturaClient::cloneUiConf in Kaltura 5
Same name and namespace in other branches
- 6 kaltura_client/kaltura_client.php \KalturaClient::cloneUiConf()
File
- kaltura_client/
kaltura_client.php, line 803
Class
Code
function cloneUiConf($kalturaSessionUser, $uiconfId, $detailed = null) {
$params = array();
$params["uiconf_id"] = $uiconfId;
$this
->addOptionalParam($params, "detailed", $detailed);
$result = $this
->hit("cloneuiconf", $kalturaSessionUser, $params);
return $result;
}