You are here

function KalturaClient::updateEntryTModeration in Kaltura 5

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

File

kaltura_client/kaltura_client.php, line 1835

Class

KalturaClient

Code

function updateEntryTModeration($kalturaSessionUser, $entryId, $moderationStatus) {
  $params = array();
  $params["entry_id"] = $entryId;
  $params["moderation_status"] = $moderationStatus;
  $result = $this
    ->hit("updateentrymoderation", $kalturaSessionUser, $params);
  return $result;
}