You are here

function CMISRepositoryWrapper::doPut in CMIS API 7

Same name and namespace in other branches
  1. 6.4 cmis_common/lib/cmis_repository_wrapper.php \CMISRepositoryWrapper::doPut()
  2. 6.3 cmis_common/lib/cmis_repository_wrapper.php \CMISRepositoryWrapper::doPut()
2 calls to CMISRepositoryWrapper::doPut()
CMISService::setContentStream in cmis_common/lib/cmis_repository_wrapper.php
CMISService::updateProperties in cmis_common/lib/cmis_repository_wrapper.php

File

cmis_common/lib/cmis_repository_wrapper.php, line 67

Class

CMISRepositoryWrapper

Code

function doPut($url, $content, $contentType, $charset = null) {
  return $this
    ->doRequest($url, "PUT", $content, $contentType);
}