Horde_Kolab_Storage_Folder::getPath PHP Méthode

getPath() public méthode

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

Usage Example

Exemple #1
0
 /**
  * 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