public function filedepot_archiver::getArchiveFilename in filedepot 7
Same name in this branch
- 7 filedepot_archiver.class.php \filedepot_archiver::getArchiveFilename()
- 7 filedepot_archiver.zip.class.php \filedepot_archiver::getArchiveFilename()
File
- ./
filedepot_archiver.zip.class.php, line 197 - filedepot_archiver.class.php Archiving class for filedepot
Class
- filedepot_archiver
- @file filedepot_archiver.class.php Archiving class for filedepot
Code
public function getArchiveFilename() {
if (file_exists($this->zipFileName) !== FALSE and !empty($this->uniquename)) {
return $this->uniquename;
}
else {
return FALSE;
}
}