bug double fontes à tester
This commit is contained in:
parent
04324128f0
commit
de202823d9
@ -603,9 +603,10 @@ class theme extends common {
|
|||||||
// Soumission du formulaire
|
// Soumission du formulaire
|
||||||
if ($this->isPost()) {
|
if ($this->isPost()) {
|
||||||
|
|
||||||
$fontId = $this->getInput('fontAddFontId', null, true);
|
$fontId = $this->getInput('fontAddFontId', helper::FILTER_STRING_SHORT, true);
|
||||||
$fontName = $this->getInput('fontAddFontName', null, true);
|
$fontName = $this->getInput('fontAddFontName',helper::FILTER_STRING_SHORT, true);
|
||||||
$filePath = $this->getInput('fontAddFile', null);
|
$filePath = $this->getInput('fontAddFile', helper::FILTER_STRING_SHORT);
|
||||||
|
$type = $this->getInput('fontAddFontImported', helper::FILTER_BOOLEAN) ? 'imported' : 'files';
|
||||||
$e = explode ('/', $filePath);
|
$e = explode ('/', $filePath);
|
||||||
$file = $e[count($e) - 1 ];
|
$file = $e[count($e) - 1 ];
|
||||||
|
|
||||||
@ -626,23 +627,20 @@ class theme extends common {
|
|||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
// Charger les données des fontes
|
|
||||||
$files = $this->getData(['fonts', 'files']);
|
|
||||||
$imported = $this->getData(['fonts', 'imported']);
|
|
||||||
|
|
||||||
// Concaténation dans les tableaux existants
|
// Concaténation dans les tableaux existants
|
||||||
|
switch ($type) {
|
||||||
|
case 'imported':
|
||||||
|
$imported = $this->getData(['fonts', 'imported']);
|
||||||
$imported = array_merge([$fontId => $fontName], $imported);
|
$imported = array_merge([$fontId => $fontName], $imported);
|
||||||
$files = array_merge([$fontId => $file], $files);
|
|
||||||
|
|
||||||
// Copier la fonte si le nom du fichier est fourni
|
|
||||||
if (!empty($filePath)) {
|
|
||||||
copy ( self::FILE_DIR . 'source/' . $filePath, self::DATA_DIR . 'fonts/' . $file );
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mettre à jour le fichier des fontes
|
|
||||||
$this->setData(['fonts', 'imported', $imported ]);
|
$this->setData(['fonts', 'imported', $imported ]);
|
||||||
if (!empty($filePath) ) {
|
break;
|
||||||
|
case 'files':
|
||||||
|
$files = $this->getData(['fonts', 'files']);
|
||||||
|
$files = array_merge([$fontId => $file], $files);
|
||||||
$this->setData(['fonts', 'files', $files ]);
|
$this->setData(['fonts', 'files', $files ]);
|
||||||
|
// Copier la fonte si le nom du fichier est fourni
|
||||||
|
copy ( self::FILE_DIR . 'source/' . $filePath, self::DATA_DIR . 'fonts/' . $file );
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
|
Loading…
Reference in New Issue
Block a user