[10.0.034.dev] canal de mise à jour WIP
This commit is contained in:
parent
eff8baf506
commit
6be6a39a1a
@ -130,8 +130,8 @@ class helper {
|
||||
* Renvoie le numéro de version de Zwii est en ligne
|
||||
* @return string
|
||||
*/
|
||||
public static function getOnlineVersion() {
|
||||
return (@file_get_contents('http://zwiicms.com/update/version'));
|
||||
public static function getOnlineVersion($channel = '') {
|
||||
return (@file_get_contents('http://zwiicms.com/update' . $channel . '/version'));
|
||||
}
|
||||
|
||||
|
||||
@ -139,8 +139,8 @@ class helper {
|
||||
* Check si une nouvelle version de Zwii est disponible
|
||||
* @return bool
|
||||
*/
|
||||
public static function checkNewVersion() {
|
||||
if($version = helper::getOnlineVersion()) {
|
||||
public static function checkNewVersion($channel = '') {
|
||||
if($version = helper::getOnlineVersion($channel)) {
|
||||
//return (trim($version) !== common::ZWII_VERSION);
|
||||
return ((version_compare(common::ZWII_VERSION,$version)) === -1);
|
||||
}
|
||||
|
@ -33,7 +33,12 @@ class common {
|
||||
const TEMP_DIR = 'site/tmp/';
|
||||
|
||||
// Numéro de version
|
||||
const ZWII_VERSION = '10.0.033.dev';
|
||||
const ZWII_VERSION = '10.0.034.dev';
|
||||
|
||||
// Laisser vide pour la version officiel
|
||||
// v10 version 10
|
||||
// v11 verison 11
|
||||
const ZWII_UPDATE_CHANNEL = 'v10';
|
||||
|
||||
public static $actions = [];
|
||||
public static $coreModuleIds = [
|
||||
@ -2246,7 +2251,7 @@ class layout extends common {
|
||||
if( $this->getData(['config','autoUpdate']) &&
|
||||
$lastAutoUpdate > $this->getData(['core','lastAutoUpdate']) + 86400 ) {
|
||||
$this->setData(['core','lastAutoUpdate',$lastAutoUpdate]);
|
||||
if ( helper::checkNewVersion() ) {
|
||||
if ( helper::checkNewVersion(common::ZWII_UPDATE_CHANNEL) ) {
|
||||
$rightItems .= '<li><a id="barUpdate" href="' . helper::baseUrl() . 'install/update" data-tippy-content="Mettre à jour Zwii '. common::ZWII_VERSION .' vers '. helper::getOnlineVersion() .'">' . template::ico('update colorRed') . '</a></li>';
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user