Corrige le retour de $success en lecture écriture de fichier

This commit is contained in:
Fred Tempez 2022-10-19 10:31:31 +02:00
parent 7ff51d24fb
commit 0a29e83b3f
6 changed files with 16 additions and 10 deletions

View File

@ -1,2 +1,4 @@
# Version 3.61
- Corrige le retour de $success en lecture écriture de fichier
# Version 3.6
- Appel de la feuille de style si présente

View File

@ -17,7 +17,7 @@
class gallery extends common {
const VERSION = '3.6';
const VERSION = '3.61';
const REALNAME = 'Galerie';
const DATADIRECTORY = self::DATA_DIR . 'gallery/';
@ -843,12 +843,12 @@ class gallery extends common {
$content = str_replace('#legendHeight#',$this->getinput('galleryThemeLegendHeight'),$content );
$content = str_replace('#legendTextColor#',$this->getinput('galleryThemeLegendTextColor'),$content );
$content = str_replace('#legendBgColor#',$this->getinput('galleryThemeLegendBgColor'),$content );
$success = file_put_contents(self::DATADIRECTORY . $this->getUrl(0) . '/theme.css', $content . $themeCss);
$success = is_int(file_put_contents(self::DATADIRECTORY . $this->getUrl(0) . '/theme.css', $content . $themeCss));
// Valeurs en sortie
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl() . '/theme',
'notification' => $success !== FALSE ? 'Modifications enregistrées' : 'Modifications non enregistrées !',
'state' => $success !== FALSE
'notification' => $success ? 'Modifications enregistrées' : 'Modifications non enregistrées !',
'state' => $success
]);
}
// Valeurs en sortie

View File

@ -1,3 +1,5 @@
# Version 4.23
- Corrige le retour de $success en lecture écriture de fichier
# Version 4.22
- Initialisation du module
# Version 4.21

View File

@ -16,7 +16,7 @@
class news extends common
{
const VERSION = '4.22';
const VERSION = '4.23';
const REALNAME = 'News';
const DATADIRECTORY = self::DATA_DIR . 'news/';
@ -249,7 +249,7 @@ class news extends common
mkdir(self::DATADIRECTORY . $this->getUrl(0) . '/theme.css', 0755, true);
}
$success = file_put_contents(self::DATADIRECTORY . $this->getUrl(0) . '/theme.css', $style);
$success = is_int(file_put_contents(self::DATADIRECTORY . $this->getUrl(0) . '/theme.css', $style));
// Fin feuille de style

View File

@ -1,3 +1,5 @@
# Version 2.71
- Corrige le retour de $success en lecture écriture de fichier
# Version 2.7
- Traduction
- Suppression du cadre de présentation des résultats

View File

@ -20,7 +20,7 @@
class search extends common
{
const VERSION = '2.7';
const VERSION = '2.71';
const REALNAME = 'Recherche';
const DATADIRECTORY = self::DATA_DIR . 'search/';
@ -125,7 +125,7 @@ class search extends common
// Générer la feuille de CSS
$style = '.keywordColor {background:' . $this->getInput('searchKeywordColor') . ';}';
$success = file_put_contents(self::DATADIRECTORY . $this->getUrl(0) . '/theme.css', $style);
$success = is_int(file_put_contents(self::DATADIRECTORY . $this->getUrl(0) . '/theme.css', $style));
// Fin feuille de style
// Soumission du formulaire
@ -145,8 +145,8 @@ class search extends common
// Valeurs en sortie, affichage du formulaire
$this->addOutput([
'redirect' => helper::baseUrl() . $this->getUrl(),
'notification' => $success !== FALSE ? 'Modifications enregistrées' : 'Modifications non enregistrées !',
'state' => $success !== FALSE
'notification' => $success ? 'Modifications enregistrées' : 'Modifications non enregistrées !',
'state' => $success
]);
}
// Valeurs en sortie, affichage du formulaire