You are here

function KalturaDataService::delete in Kaltura 6.2

File

kaltura_client/KalturaClient.php, line 3887

Class

KalturaDataService

Code

function delete($entryId) {
  $kparams = array();
  $this->client
    ->addParam($kparams, "entryId", $entryId);
  $this->client
    ->queueServiceActionCall("data", "delete", $kparams);
  if ($this->client
    ->isMultiRequest()) {
    return null;
  }
  $resultObject = $this->client
    ->doQueue();
  $this->client
    ->throwExceptionIfError($resultObject);
  $this->client
    ->validateObjectType($resultObject, "null");
  return $resultObject;
}