Deltacms/core/include/update.inc.php

62 lines
2.0 KiB
PHP
Raw Normal View History

2022-01-31 09:10:49 +01:00
<?php
/**
* Mises à jour suivant les versions de DeltaCMS
*/
if ($this->getData(['core', 'dataVersion']) < 3202) {
//Forcer une mise à jour de admin.css
$this->setData(['admin', 'maj', true]);
//Forcer une mise à jour de theme.css
if (file_exists(self::DATA_DIR . '/theme.css')) unlink (self::DATA_DIR . '/theme.css');
$this->setData(['core', 'dataVersion', 3202]);
2022-01-31 09:10:49 +01:00
}
2022-03-06 13:35:21 +01:00
if ($this->getData(['core', 'dataVersion']) < 3206) {
// Mise à jour
2022-03-06 13:35:21 +01:00
$this->setData(['core', 'dataVersion', 3206]);
}
if ($this->getData(['core', 'dataVersion']) < 4001) {
$this->setData(['config', 'i18n', 'langAdmin', 'fr']);
$this->setData(['config', 'i18n', 'langBase', 'fr']);
// Copie le contenu de site/data/fr vers site/data/base puis supprime site/data/fr
if( is_dir('./site/data/fr/') ){
$this->copyDir('./site/data/fr/', './site/data/base/');
$this->removeDir('./site/data/fr/');
}
// Mise à jour
$this->setData(['core', 'dataVersion', 4001]);
}
2022-03-18 07:50:13 +01:00
if ($this->getData(['core', 'dataVersion']) < 4002) {
// Validation des statistiques
$this->setData(['config', 'statistlite', 'enable', false]);
// Mise à jour
$this->setData(['core', 'dataVersion', 4002]);
}
2022-03-21 08:32:27 +01:00
if ($this->getData(['core', 'dataVersion']) < 4101) {
$this->setData(['config', 'i18n', 'da', 'none']);
$this->setData(['config', 'i18n', 'el', 'none']);
$this->setData(['config', 'i18n', 'fi', 'none']);
$this->setData(['config', 'i18n', 'ga', 'none']);
$this->setData(['config', 'i18n', 'sv', 'none']);
$this->setData(['config', 'i18n', 'otherLangBase', '']);
// Mise à jour
$this->setData(['core', 'dataVersion', 4101]);
}
2022-03-22 08:19:03 +01:00
2022-04-20 09:25:59 +02:00
if ($this->getData(['core', 'dataVersion']) < 4104) {
$this->setData(['config', 'i18n', 'br', 'none']);
$this->setData(['config', 'i18n', 'ca', 'none']);
$this->setData(['config', 'i18n', 'co', 'none']);
$this->setData(['config', 'i18n', 'eu', 'none']);
2022-03-22 08:19:03 +01:00
// Mise à jour
2022-04-20 09:25:59 +02:00
$this->setData(['core', 'dataVersion', 4104]);
2022-03-22 08:19:03 +01:00
}
2022-05-11 08:58:38 +02:00
if ($this->getData(['core', 'dataVersion']) < 4201) {
2022-03-22 08:19:03 +01:00
2022-05-01 11:45:17 +02:00
// Mise à jour
2022-05-11 08:58:38 +02:00
$this->setData(['core', 'dataVersion', 4201]);
2022-05-01 11:45:17 +02:00
}
2022-01-31 09:10:49 +01:00
?>