CC-5896: Store cloud files in separate table, inherited from cc_files

Refactored storedfile->delete()
Added a deletePhysicalFile function to CcFile and CloudFile
Cleaned up schedule events that get passed to Pypo
This commit is contained in:
drigato 2014-07-29 15:07:51 -04:00
parent b7d1852fc0
commit 8c2754972e
5 changed files with 53 additions and 54 deletions

View file

@ -99,4 +99,9 @@ class CcFiles extends BaseCcFiles {
return is_file($this->getAbsoluteFilePath());
}
public function deletePhysicalFile()
{
unlink($this->getAbsoluteFilePath());
}
} // CcFiles