Horde_Kolab_Storage_Folder::getSubpath PHP Méthode

getSubpath() public méthode

Returns the folder path without namespace components.
public getSubpath ( ) : string
Résultat string The subpath of this folder.
    public function getSubpath();

Usage Example

Exemple #1
0
 /**
  * Return the ID parameters for this data handler.
  *
  * @return array The ID parameters.
  */
 public function getIdParameters()
 {
     $id = $this->_driver->getParameters();
     unset($id['user']);
     $id['owner'] = $this->_folder->getOwner();
     $id['prefix'] = $this->_folder->getPrefix();
     $id['folder'] = $this->_folder->getSubpath();
     $id['type'] = $this->getType();
     return $id;
 }