getObjectsByBackendId() 공개 메소드

Retrieve all objects in the current folder by backend id.
public getObjectsByBackendId ( ) : array
리턴 array An array of all objects.
예제 #1
0
파일: Log.php 프로젝트: horde/horde
 /**
  * Retrieve all objects in the current folder by backend id.
  *
  * @return array An array of all objects.
  */
 public function getObjectsByBackendId()
 {
     $result = $this->_data->getObjectsByBackendId();
     if (count($result) < 20) {
         $ids = '[backend ids: ' . join(', ', array_keys($result)) . ']';
     } else {
         $ids = '[too many to list]';
     }
     $this->_logger->debug(sprintf('%s has %s objects %s.', $this->_data->getPath(), count($result), $ids));
     return $result;
 }