getVFSPath() public method

public getVFSPath ( $folder )
Esempio n. 1
0
 function getFaxData($fax_id)
 {
     $path = Hylax::getVFSPath($fax_id);
     $file = $fax_id . '.ps';
     try {
         return $this->_vfs->read($path, $file);
     } catch (Horde_Vfs_Exception $e) {
         Horde::log(sprintf("%s '%s/%s'.", $e->getMessage(), $path, $file), 'ERR');
         throw $e;
     }
 }