removed code of plugins update manager

refactored & improved other code
This commit is contained in:
Steffen Schröder 2014-05-02 04:03:33 +02:00
parent d89d5578dc
commit 08d52f1a18
2 changed files with 241 additions and 644 deletions

View File

@ -3,9 +3,9 @@
namespace ManiaControl\Update;
/**
* UpdateStructure
*
* @author steeffeen & kremsy
* Update Data Structure
*
* @author ManiaControl Team
* @copyright ManiaControl Copyright © 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
@ -13,21 +13,37 @@ class UpdateData {
/*
* Public Properties
*/
public $version = 0;
public $channel = "";
public $url = "";
public $releaseDate = "";
public $minDedicatedBuild = "";
public $version = null;
public $channel = null;
public $url = null;
public $releaseDate = null;
public $minDedicatedBuild = null;
/**
* Construct new Update Data
*
* @param Object $updateData
* @param object $updateData
*/
public function __construct($updateData) {
$this->version = $updateData->version;
$this->channel = $updateData->channel;
$this->url = $updateData->url;
$this->version = $updateData->version;
$this->channel = $updateData->channel;
$this->url = $updateData->url;
$this->releaseDate = $updateData->release_date;
$this->minDedicatedBuild = $updateData->min_dedicated_build;
}
/**
* Check if the Update Data is newer than the given Date
*
* @param string $compareDate
* @return bool
*/
public function isNewerThan($compareDate) {
if (!$compareDate) {
return true;
}
$compareTime = strtotime($compareDate);
$releaseTime = strtotime($this->releaseDate);
return ($releaseTime > $compareTime);
}
}

File diff suppressed because it is too large Load Diff