You are here

function CMISService::getChildren in CMIS API 6.4

Same name and namespace in other branches
  1. 6.3 cmis_common/lib/cmis_repository_wrapper.php \CMISService::getChildren()
  2. 7 cmis_common/lib/cmis_repository_wrapper.php \CMISService::getChildren()

File

cmis_common/lib/cmis_repository_wrapper.php, line 470

Class

CMISService

Code

function getChildren($objectId, $options = array()) {
  $myURL = $this
    ->getLink($objectId, "down");

  //TODO: Need GenURLQueryString Utility
  $ret = $this
    ->doGet($myURL);
  $objs = $this
    ->extractObjectFeed($ret->body);
  $this
    ->cacheFeedInfo($objs);
  return $objs;
}