getSubpath() public method

Returns the folder path without namespace components.
public getSubpath ( ) : string
return string The subpath of this folder.
示例#1
0
文件: Base.php 项目: platolin/horde
 /**
  * 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;
 }