You are here

function cmisapi_getChildren in CMIS API 6.2

Same name and namespace in other branches
  1. 6.4 cmis.api.inc \cmisapi_getChildren()
  2. 6 cmis.api.inc \cmisapi_getChildren()
  3. 6.3 cmis.api.inc \cmisapi_getChildren()
  4. 7.2 cmis.api.inc \cmisapi_getChildren()
  5. 7 cmis.api.inc \cmisapi_getChildren()
1 call to cmisapi_getChildren()
_cmis_browser_content_get_folder in cmis_browser/cmis_browser.content_get.inc
CMIS folder browser handler.

File

./cmis.api.inc, line 40
CMIS 0.5 client implementation

Code

function cmisapi_getChildren($repositoryId, $folderId, $type = NULL, $filter = NULL, $includeAllowableActions = NULL, $includeRelationships = NULL, $maxItems = NULL, $skipCount = NULL, $orderBy = NULL) {
  return cmis_vendor_invoke('getChildren', $repositoryId, $folderId, $type, $filter, $includeAllowableActions, $includeRelationships, $maxItems, $skipCount, $orderBy);
}