DateVersion 12300

This commit is contained in:
Fred Tempez 2023-02-16 21:37:23 +01:00
parent b68c4c6d0e
commit 3370c9c9d6
2 changed files with 6 additions and 8 deletions

View File

@ -49,7 +49,7 @@ class common
// Numéro de version et branche pour l'auto-update
const ZWII_VERSION = '12.3.00';
const ZWII_DATAVERSION = 12204;
const ZWII_DATAVERSION = 12300;
// URL autoupdate
const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/update/raw/branch/master/';

View File

@ -927,13 +927,12 @@ if ($this->getData(['core', 'dataVersion']) < 12000) {
$this->setData(['core', 'dataVersion', 12000]);
}
// Version 12.2.04
if ($this->getData(['core', 'dataVersion']) < 12204) {
// Version 12.3.00
if ($this->getData(['core', 'dataVersion']) < 12300) {
// Valeur par défaut du délai de recherche de mise à jour en ligne
$this->setData(['config', 'autoUpdateDelay', 86400]);
// Changement de nom des fichiers de langue greque
if (file_exists('core\module\install\ressource\i18n\gr_GR.json')) {
copy('core\module\install\ressource\i18n\gr_GR.json', ' core\module\install\ressource\i18n\el_GR.json');
unlink('core\module\install\ressource\i18n\gr_GR.json');
}
if (file_exists(self::I18N_DIR . 'gr_GR.json')) {
@ -945,11 +944,10 @@ if ($this->getData(['core', 'dataVersion']) < 12204) {
// Idem pour les modules
$moduleIds = ['blog', 'news', 'gallery', 'search', 'redirection', 'form'];
foreach($moduleIds as $key => $value) {
if (file_exists('module/' . $value . '/i18n/gr_GR.json' ))
{
rename ('module/' . $value . '/i18n/gr_GR.json', 'module/' . $value . '/i18n/el_GR.json');
if (file_exists('module/' . $value . '/i18n/gr_GR.json' )) {
unlink ('module/' . $value . '/i18n/gr_GR.json');
}
}
// Mise à jour
$this->setData(['core', 'dataVersion', 12204]);
$this->setData(['core', 'dataVersion', 12300]);
}