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