Horde_Kolab_Storage_Folder::getPath PHP Method

getPath() public method

Return the storage path of the folder.
public getPath ( ) : string
return string The storage path of the folder.
    public function getPath();

Usage Example

示例#1
0
文件: Base.php 项目: platolin/horde
 /**
  * Delete the specified messages from this folder.
  *
  * @param array|string $uids Backend id(s) of the message to be deleted.
  */
 public function deleteBackendIds($uids)
 {
     if (!is_array($uids)) {
         $uids = array($uids);
     }
     $this->_driver->deleteMessages($this->_folder->getPath(), $uids);
     $this->_driver->expunge($this->_folder->getPath());
 }
All Usage Examples Of Horde_Kolab_Storage_Folder::getPath