From d6c2cd62d2370c83e0392a8a11dd44339404e79a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Tempez?= Date: Sat, 12 Mar 2022 14:00:33 +0100 Subject: [PATCH] =?UTF-8?q?fontEdit=20=C3=A0=20tester?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/module/theme/theme.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/core/module/theme/theme.php b/core/module/theme/theme.php index b7b26ce6..ef42c2b4 100644 --- a/core/module/theme/theme.php +++ b/core/module/theme/theme.php @@ -656,7 +656,7 @@ class theme extends common { // Valeurs en sortie $this->addOutput([ - 'notification' => 'La fonte a été importée', + 'notification' => 'La fonte a été créée', 'redirect' => helper::baseUrl() . 'theme/fonts', 'state' => true ]); @@ -676,11 +676,11 @@ class theme extends common { // Soumission du formulaire if ($this->isPost()) { // Type d'import en ligne ou local - $type = $this->getInput('fontAddFontImported', helper::FILTER_BOOLEAN) ? 'imported' : 'files'; - $ressource = $type === 'imported' ? $this->getInput('fontAddUrl', helper::FILTER_STRING_SHORT) : $this->getInput('fontAddFile', helper::FILTER__SHORT_STRING); - $fontId = $this->getInput('fontAddFontId', helper::FILTER_STRING_SHORT, true); - $fontName = $this->getInput('fontAddFontName', helper::FILTER_STRING_SHORT, true); - $fontFamilyName = $this->getInput('fontAddFontFamilyName', helper::FILTER_STRING_SHORT, true); + $type = $this->getInput('fontEditFontImported', helper::FILTER_BOOLEAN) ? 'imported' : 'files'; + $ressource = $type === 'imported' ? $this->getInput('fontEditUrl', helper::FILTER_STRING_SHORT) : $this->getInput('fontEditFile', helper::FILTER__SHORT_STRING); + $fontId = $this->getInput('fontEditFontId', helper::FILTER_STRING_SHORT, true); + $fontName = $this->getInput('fontEditFontName', helper::FILTER_STRING_SHORT, true); + $fontFamilyName = $this->getInput('fontEditFontFamilyName', helper::FILTER_STRING_SHORT, true); // Vérifier l'existence de fontId et validité de family name si usage en ligne de cdnFonts @@ -712,7 +712,7 @@ class theme extends common { // Valeurs en sortie $this->addOutput([ - 'notification' => 'La fonte a été importée', + 'notification' => 'La fonte a été éditée', 'redirect' => helper::baseUrl() . 'theme/fonts', 'state' => true ]);