Horde_Kolab_Storage_Cache_Data::getObjects PHP Method

getObjects() public method

Retrieves the object list from the cache.
public getObjects ( ) : array
return array The list of objects.
    public function getObjects()
    {
        return $this->_fetchCacheEntry(self::OBJECTS);
    }

Usage Example

Example #1
0
 /**
  * Retrieve all objects in the current folder.
  *
  * @return array An array of all objects.
  */
 public function getObjects()
 {
     $this->_init();
     return $this->_data_cache->getObjects();
 }
All Usage Examples Of Horde_Kolab_Storage_Cache_Data::getObjects