function CMISRepositoryWrapper::doPut in CMIS API 7
Same name and namespace in other branches
- 6.4 cmis_common/lib/cmis_repository_wrapper.php \CMISRepositoryWrapper::doPut()
- 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
Code
function doPut($url, $content, $contentType, $charset = null) {
return $this
->doRequest($url, "PUT", $content, $contentType);
}