News : Bug theme par defaut

This commit is contained in:
fredtempez 2021-05-03 18:54:07 +02:00
parent 3a88ae8dca
commit 6506679466
2 changed files with 8 additions and 4 deletions

View File

@ -448,9 +448,13 @@ class news extends common {
// Créer la structure de configuration si absente
// Il n'existait aucun paramétrage dans les version précédentes
if ($this->getData(['module', $this->getUrl(0), 'config']) === NULL ) {
if ($this->getData(['module', $this->getUrl(0), 'config', 'itemsperPage']) === NULL ) {
// Données config et theme absentes du précédent module
$this->init();
require_once('module/news/ressource/defaultdata.php');
$this->setData(['module', $this->getUrl(0), 'config', init::$defaultData]);
// Données de thème
$this->setData(['module', $this->getUrl(0), 'theme', init::$defaultTheme]);
$this->setData(['module', $this->getUrl(0), 'theme', 'style', self::DATADIRECTORY . 'pages/' . $this->getUrl(0) . '/theme.css' ]);
}
}

View File

@ -8,7 +8,7 @@ class init extends search {
'versionData' => '3.0'
];
public static $defaultTheme = [
'itemsHeight' => '200px',
'itemsBlur' => '0%'
'itemsHeight' => 'auto',
'itemsBlur' => '100%'
];
}