Installation des thèmes

This commit is contained in:
Fred Tempez 2021-10-19 19:37:04 +02:00
parent 83ecfc4ba6
commit 655da7a2cc
2 changed files with 12 additions and 4 deletions

View File

@ -122,14 +122,21 @@ class install extends common {
// Créer sitemap // Créer sitemap
$this->createSitemap(); $this->createSitemap();
// Installation du thème // Installation du thème sélectionné
$dataThemes = file_get_contents("core/module/install/ressource/themes/themes.json"); $dataThemes = file_get_contents('core/module/install/ressource/themes/themes.json');
$dataThemes = json_decode($dataThemes, true); $dataThemes = json_decode($dataThemes, true);
$themeId = $dataThemes [$this->getInput('installTheme', helper::FILTER_STRING_SHORT)]['filename']; $themeId = $dataThemes [$this->getInput('installTheme', helper::FILTER_STRING_SHORT)]['filename'];
if ($themeId !== 'default' ) { if ($themeId !== 'default' ) {
$theme = new theme; $theme = new theme;
$theme->import('core/module/install/ressource/themes/' . $themeId); $theme->import('core/module/install/ressource/themes/' . $themeId);
} }
// Copie des thèmes dans les fichiers
if (!is_dir(self::FILE_DIR . 'source/theme' )) {
mkdir(self::FILE_DIR . 'source/theme');
}
$this->copyDir('core/module/install/ressource/themes', self::FILE_DIR . 'source/theme');
unlink(self::FILE_DIR . 'source/theme/themes.json');
// Valeurs en sortie // Valeurs en sortie
$this->addOutput([ $this->addOutput([

View File

@ -39,8 +39,9 @@
<div class="row"> <div class="row">
<div class="col6"> <div class="col6">
<?php echo template::select('installTheme', $module::$themes, [ <?php echo template::select('installTheme', $module::$themes, [
'label' => 'Thème', 'label' => 'Thème',
]); ?> 'help' => 'Le thème pourrait être changé après l\'installation'
]); ?>
</div> </div>
</div> </div>
<div class="row"> <div class="row">