You are here

function KalturaClient::getUIConf in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 998

Class

KalturaClient

Code

function getUIConf($kalturaSessionUser, $uiConfId, $detailed = null) {
  $params = array();
  $params["ui_conf_id"] = $uiConfId;
  $this
    ->addOptionalParam($params, "detailed", $detailed);
  $result = $this
    ->hit("getuiconf", $kalturaSessionUser, $params);
  return $result;
}