manager = $manager; } /** * Move the mount point to $target * * @param string $target the target mount point * @return bool */ public function moveMount($target) { $result = $this->manager->setMountPoint($this->mountPoint, $target); $this->setMountPoint($target); return $result; } /** * Remove the mount points */ public function removeMount(): bool { return $this->manager->removeShare($this->mountPoint); } /** * Get the type of mount point, used to distinguish things like shares and external storage * in the web interface * * @return string */ public function getMountType() { return 'shared'; } }