function KalturaClient::getEntries in Kaltura 6
Same name and namespace in other branches
- 5 kaltura_client/kaltura_client.php \KalturaClient::getEntries()
File
- kaltura_client/
kaltura_client.php, line 907
Class
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;
}