Example #1
0
 /**
  * Get path to temporary file in file system
  *
  * @param int $id
  *
  * @return string
  */
 public function getTemporaryFilePath($id)
 {
     $userfilesDir = OW::getPluginManager()->getPlugin('base')->getUserFilesDir();
     $file = $this->fileTemporaryDao->findById($id);
     return $userfilesDir . self::TMP_FILE_PREFIX . $id . $file->filename;
 }