コード例 #1
0
 /**
  * @return string the mount point of the mount for the user
  */
 public function getMountPoint()
 {
     if (!$this->mountPoint) {
         $this->mountPoint = $this->mount->getMountPoint();
     }
     return parent::getMountPoint();
 }
コード例 #2
0
ファイル: Manager.php プロジェクト: rchicoli/owncloud-core
 /**
  * @param IMountPoint $mount
  */
 public function addMount(IMountPoint $mount)
 {
     $this->mounts[$mount->getMountPoint()] = $mount;
 }