You are here

public function filedepot_archiver::getArchiveFilename in filedepot 7

Same name in this branch
  1. 7 filedepot_archiver.class.php \filedepot_archiver::getArchiveFilename()
  2. 7 filedepot_archiver.zip.class.php \filedepot_archiver::getArchiveFilename()

File

./filedepot_archiver.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;
  }
}