function CMISService::getCheckedOutDocs in CMIS API 7
Same name and namespace in other branches
- 6.4 cmis_common/lib/cmis_repository_wrapper.php \CMISService::getCheckedOutDocs()
- 6.3 cmis_common/lib/cmis_repository_wrapper.php \CMISService::getCheckedOutDocs()
File
- cmis_common/
lib/ cmis_repository_wrapper.php, line 592
Class
Code
function getCheckedOutDocs($options = array()) {
$obj_url = $this->workspace->collections['checkedout'];
if (count($options) > 0) {
$myURL .= '&' . urldecode(http_build_query($options));
}
$ret = $this
->doGet($myURL);
$objs = $this
->extractObjectFeed($ret->body);
$this
->cacheFeedInfo($objs);
return $objs;
}