You are here

function KalturaClient::getAllEntries in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 875

Class

KalturaClient

Code

function getAllEntries($kalturaSessionUser, $entryId, $kshowId, $listType = null, $version = null, $disableRoughcutEntryData = null) {
  $params = array();
  $params["entry_id"] = $entryId;
  $params["kshow_id"] = $kshowId;
  $this
    ->addOptionalParam($params, "list_type", $listType);
  $this
    ->addOptionalParam($params, "version", $version);
  $this
    ->addOptionalParam($params, "disable_roughcut_entry_data", $disableRoughcutEntryData);
  $result = $this
    ->hit("getallentries", $kalturaSessionUser, $params);
  return $result;
}