getObjectsByBackendId() public method

Retrieve all objects in the current folder by backend id.
public getObjectsByBackendId ( ) : array
return array An array of all objects.
Example #1
0
File: Log.php Project: 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;
 }