Ejemplo n.º 1
0
 /**
  * Initialisiert System Updater
  */
 public function __construct()
 {
     parent::__construct();
     $this->remoteUrl = \fpcm\classes\baseconfig::$moduleServer . 'server3.php?data=';
     $this->checkParams = array('version' => $this->config->system_version);
     $this->encodeUrl();
 }
Ejemplo n.º 2
0
 /**
  * Initialisiert System Updater
  * @param int $init
  */
 public function __construct()
 {
     parent::__construct();
     $this->remoteUrl = \fpcm\classes\baseconfig::$updateServer . 'server3.php?data=';
     $this->checkParams = array('version' => $this->config->system_version);
     if ($this->config->system_updates_devcheck) {
         $this->checkParams['dev'] = 1;
     }
     $this->encodeUrl();
 }