You are here

function KalturaClient::getEntry in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 918

Class

KalturaClient

Code

function getEntry($kalturaSessionUser, $entryId, $detailed = null, $version = null) {
  $params = array();
  $params["entry_id"] = $entryId;
  $this
    ->addOptionalParam($params, "detailed", $detailed);
  $this
    ->addOptionalParam($params, "version", $version);
  $result = $this
    ->hit("getentry", $kalturaSessionUser, $params);
  return $result;
}