예제 #1
0
 /**
  *  Manages the Package Process
  */
 function __construct()
 {
     $this->ID = null;
     $this->Version = DUPLICATOR_VERSION;
     $this->Type = DUP_PackageType::MANUAL;
     $this->Name = self::GetDefaultName();
     $this->Notes = null;
     $this->StoreURL = DUP_Util::SSDirURL();
     $this->StorePath = DUPLICATOR_SSDIR_PATH_TMP;
     $this->Database = new DUP_Database($this);
     $this->Archive = new DUP_Archive($this);
     $this->Installer = new DUP_Installer($this);
 }