getSystemList() public method

Get a folder list object for a "system" user.
public getSystemList ( string $type ) : Horde_Kolab_Storage_List
$type string The type of system user.
return Horde_Kolab_Storage_List The handler for the list of folders present in the Kolab backend.
Example #1
0
 /**
  * Get a folder list object for a "system" user.
  *
  * @param string $type The type of system user.
  *
  * @return Horde_Kolab_Storage_List The handler for the list of folders
  *                                  present in the Kolab backend.
  */
 public function getSystemList($type)
 {
     return $this->_storage->getSystemList($type);
 }
Example #2
0
 /**
  * Get a folder list object for a "system" user.
  *
  * @param string $type The type of system user.
  *
  * @return Horde_Kolab_Storage_List The handler for the list of folders
  *                                  present in the Kolab backend.
  */
 public function getSystemList($type)
 {
     $list = $this->_storage->getSystemList($type);
     $this->_synchronization->synchronizeList($list);
     return $list;
 }