You are here

function CMISService::deleteContentStream in CMIS API 6.3

Same name and namespace in other branches
  1. 6.4 cmis_common/lib/cmis_repository_wrapper.php \CMISService::deleteContentStream()
  2. 7 cmis_common/lib/cmis_repository_wrapper.php \CMISService::deleteContentStream()

File

cmis_common/lib/cmis_repository_wrapper.php, line 821

Class

CMISService

Code

function deleteContentStream($objectId, $options = array()) {

  //yes
  $myURL = $this
    ->getLink($objectId, "edit-media");
  $ret = $this
    ->doDelete($myURL);
  return;
}