Adapte le message lors de la mise à jour
This commit is contained in:
parent
1a27befb75
commit
26623db2b7
@ -30,6 +30,8 @@ class install extends common
|
|||||||
'http://' => 'HTTP'
|
'http://' => 'HTTP'
|
||||||
];
|
];
|
||||||
|
|
||||||
|
public static $updateButtonText = 'Réinstaller';
|
||||||
|
|
||||||
// Thèmes proposés à l'installation
|
// Thèmes proposés à l'installation
|
||||||
public static $themes = [];
|
public static $themes = [];
|
||||||
|
|
||||||
@ -468,10 +470,17 @@ class install extends common
|
|||||||
} else {
|
} else {
|
||||||
// Nouvelle version
|
// Nouvelle version
|
||||||
self::$newVersion = helper::getUrlContents(common::ZWII_UPDATE_URL . common::ZWII_UPDATE_CHANNEL . '/version');
|
self::$newVersion = helper::getUrlContents(common::ZWII_UPDATE_URL . common::ZWII_UPDATE_CHANNEL . '/version');
|
||||||
|
|
||||||
|
// Variable de version
|
||||||
|
if (helper::checkNewVersion(common::ZWII_UPDATE_CHANNEL)) {
|
||||||
|
self::$updateButtonText = helper::translate('Mettre à jour');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'display' => self::DISPLAY_LAYOUT_LIGHT,
|
'display' => self::DISPLAY_LAYOUT_LIGHT,
|
||||||
'title' => helper::translate('Mise à jour'),
|
'title' => helper::translate(self::$updateButtonText),
|
||||||
'view' => 'update'
|
'view' => 'update'
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<div id="updateContainer">
|
<div id="updateContainer">
|
||||||
<p><strong>
|
<p><strong>
|
||||||
<?php echo helper::translate('Mise à jour de ZwiiCMS'); ?>
|
<?php echo helper::translate('Version'); ?>
|
||||||
|
|
||||||
<?php echo self::ZWII_VERSION; ?>
|
<?php echo self::ZWII_VERSION; ?>
|
||||||
<?php echo helper::translate('vers ZwiiCMS'); ?>
|
<?php echo helper::translate('vers'); ?>
|
||||||
|
|
||||||
<?php echo $module::$newVersion; ?>.
|
<?php echo $module::$newVersion; ?>.
|
||||||
</strong></p>
|
</strong></p>
|
||||||
|
Loading…
Reference in New Issue
Block a user