forked from ZwiiCMS-Team/ZwiiCMS
Revert "Inversion du test de version WIP"
This reverts commit 0432eb65b6
.
This commit is contained in:
parent
0432eb65b6
commit
ba5cdb3deb
@ -115,7 +115,7 @@ class blog extends common {
|
|||||||
$this->setData(['module', $this->getUrl(0), 'config', 'version','4.5']);
|
$this->setData(['module', $this->getUrl(0), 'config', 'version','4.5']);
|
||||||
}
|
}
|
||||||
// Version 5.0
|
// Version 5.0
|
||||||
if (version_compare('5.0', $this->getData(['module', $this->getUrl(0), 'config', 'version']), '<') ) {
|
if (version_compare($this->getData(['module', $this->getUrl(0), 'config', 'version']), '5.0', '<') ) {
|
||||||
$this->setData(['module', $this->getUrl(0), 'config', 'itemsperPage', 6]);
|
$this->setData(['module', $this->getUrl(0), 'config', 'itemsperPage', 6]);
|
||||||
$this->setData(['module', $this->getUrl(0), 'config', 'version','5.0']);
|
$this->setData(['module', $this->getUrl(0), 'config', 'version','5.0']);
|
||||||
}
|
}
|
||||||
|
@ -128,7 +128,7 @@ class download extends common {
|
|||||||
$this->setData(['module', $this->getUrl(0), 'config', 'version','0.0']);
|
$this->setData(['module', $this->getUrl(0), 'config', 'version','0.0']);
|
||||||
}
|
}
|
||||||
// Version 5.0
|
// Version 5.0
|
||||||
if (version_compare('1.2', $this->getData(['module', $this->getUrl(0), 'config', 'version']), '<') ) {
|
if (version_compare($this->getData(['module', $this->getUrl(0), 'config', 'version']), '1.1', '<') ) {
|
||||||
$this->setData(['module', $this->getUrl(0), 'config', 'itemsperPage', 6]);
|
$this->setData(['module', $this->getUrl(0), 'config', 'itemsperPage', 6]);
|
||||||
$this->setData(['module', $this->getUrl(0), 'config', 'version','1.2']);
|
$this->setData(['module', $this->getUrl(0), 'config', 'version','1.2']);
|
||||||
}
|
}
|
||||||
|
@ -66,19 +66,15 @@ class news extends common {
|
|||||||
* Appelée par les fonctions index et config
|
* Appelée par les fonctions index et config
|
||||||
*/
|
*/
|
||||||
private function update() {
|
private function update() {
|
||||||
// Initialisation de la version
|
// Insitialisation de la version
|
||||||
if ($this->getData(['module', $this->getUrl(0), 'config', 'version']) === NULL) {
|
if ($this->getData(['module', $this->getUrl(0), 'config', 'version']) === NULL) {
|
||||||
$this->setData(['module', $this->getUrl(0), 'config', 'version','0.0']);
|
$this->setData(['module', $this->getUrl(0), 'config', 'version','0.0']);
|
||||||
}
|
}
|
||||||
// Version 3.0
|
// Version 3.0
|
||||||
if (version_compare('3.0',$this->getData(['module', $this->getUrl(0), 'config', 'version']), '<') ) {
|
if (version_compare($this->getData(['module', $this->getUrl(0), 'config', 'version']), self::VERSION, '<') ) {
|
||||||
$this->setData(['module', $this->getUrl(0),'config', [
|
$this->setData(['module', $this->getUrl(0), 'config', 'itemsperPage', 16]);
|
||||||
'itemsperPage' => 16,
|
$this->setData(['module', $this->getUrl(0), 'config', 'itemsperCol', 6]);
|
||||||
'itemsperCol'=> 6,
|
$this->setData(['module', $this->getUrl(0), 'config', 'version','3.0']);
|
||||||
'feeds' => $this->getData(['module', $this->getUrl(0), 'config','feeds']),
|
|
||||||
'feedsLabel' => $this->getData(['module', $this->getUrl(0), 'config','feedsLabel']),
|
|
||||||
'version' => '3.0'
|
|
||||||
]]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user