new optional parameter $dir for method createArchive()

This commit is contained in:
Uwe Steinmann 2025-11-13 12:19:03 +01:00
parent d042fd3588
commit 1bd8f9fcea

View File

@ -314,11 +314,17 @@ $EXT_CONF = '.var_export($EXT_CONF, true).';');
* @param string $version version of extension (x.y.z)
* @return string name of temporary file with archive
*/
public function createArchive($extname, $version) { /* {{{ */
public function createArchive($extname, $version, $dir = null) { /* {{{ */
if(!is_dir($this->extdir ."/". $extname))
return false;
$tmpfile = $this->cachedir."/".$extname."-".$version.".zip";
if ($dir) {
if (!is_dir($dir))
return false;
$tmpfile = $dir."/".$extname."-".$version.".zip";
} else {
$tmpfile = $this->cachedir."/".$extname."-".$version.".zip";
}
if(!SeedDMS_Extension_Mgr::Zip($this->extdir."/".$extname, $tmpfile)) {
return false;