示例#1
0
文件: Zip.php 项目: nibra/jorobo
 /**
  * Initialize Build Task
  */
 public function __construct()
 {
     parent::__construct();
     $this->target = JPATH_BASE . "/dist/" . $this->getExtensionName() . "-" . $this->getConfig()->version . ".zip";
     $this->zip = new \ZipArchive($this->target, \ZipArchive::CREATE);
 }
示例#2
0
文件: Package.php 项目: yvesh/jbuild
 /**
  * Initialize Build Task
  */
 public function __construct()
 {
     parent::__construct();
     $this->target = JPATH_BASE . "/dist/pkg-" . $this->getExtensionName() . "-" . $this->getConfig()->version . ".zip";
     $this->current = JPATH_BASE . "/dist/current";
 }