Merge branch 'seeddms-5.1.x' into seeddms-6.0.x

This commit is contained in:
Uwe Steinmann 2025-11-13 12:19:38 +01:00
commit dbe16602fc

View File

@ -318,11 +318,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;
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;