Horde_Kolab_Storage_Driver_Decorator_Base::listFolders PHP Method

listFolders() public method

Retrieves a list of mailboxes from the server.
public listFolders ( ) : array
return array The list of mailboxes.
    public function listFolders()
    {
        return $this->_driver->listFolders();
    }

Usage Example

Example #1
0
 /**
  * Retrieves a list of mailboxes from the server.
  *
  * @return array The list of mailboxes.
  */
 public function listFolders()
 {
     $this->_timer->push();
     $result = parent::listFolders();
     $this->_logger->debug(sprintf('REQUEST OUT IMAP: %s ms [listFolders]', floor($this->_timer->pop() * 1000)));
     return $result;
 }
All Usage Examples Of Horde_Kolab_Storage_Driver_Decorator_Base::listFolders