You are here

function KalturaClient::getEntries in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 907

Class

KalturaClient

Code

function getEntries($kalturaSessionUser, $entryIds, $separator = ",", $detailed = null) {
  $params = array();
  $params["entry_ids"] = $entryIds;
  $this
    ->addOptionalParam($params, "separator", $separator);
  $this
    ->addOptionalParam($params, "detailed", $detailed);
  $result = $this
    ->hit("getentries", $kalturaSessionUser, $params);
  return $result;
}