diff --git a/module/news/changes.md b/module/news/changes.md index c6628690..7ce9e9f9 100644 --- a/module/news/changes.md +++ b/module/news/changes.md @@ -1,5 +1,5 @@ # Versions 6.0 -- Ajoute deux nouvelles options pour afficher ou masquer la date et l'heure de l'article. +- Ajoute trois nouvelles options pour afficher ou masquer la signature, la date et l'heure de l'article. - Corrige un mauvais format de la propriété buttonBack non stockée au type booléen. # Versions 5.9 - Largeur d'un bouton de retour. diff --git a/module/news/news.php b/module/news/news.php index 6b6c477e..80403089 100644 --- a/module/news/news.php +++ b/module/news/news.php @@ -317,6 +317,7 @@ class news extends common 'buttonBack' => $this->getInput('newsOptionButtonBack', helper::FILTER_BOOLEAN), 'showDate' => $this->getInput('newsOptionShowDate', helper::FILTER_BOOLEAN), 'showTime' => $this->getInput('newsOptionShowTime', helper::FILTER_BOOLEAN), + 'showPseudo' => $this->getInput('newsOptionShowPseudo', helper::FILTER_BOOLEAN), 'versionData' => $this->getData(['module', $this->getUrl(0), 'config', 'versionData']), ] ]); @@ -623,6 +624,7 @@ class news extends common $this->setData(['module', $this->getUrl(0), 'config', 'buttonBack', true]); $this->setData(['module', $this->getUrl(0), 'config', 'showTime', true]); $this->setData(['module', $this->getUrl(0), 'config', 'showDate', true]); + $this->setData(['module', $this->getUrl(0), 'config', 'showPseudo', true]); // Mettre à jour la version $this->setData(['module', $this->getUrl(0), 'config', 'versionData', '6.0']); } diff --git a/module/news/view/article/article.php b/module/news/view/article/article.php index a0c037b2..a82413f6 100644 --- a/module/news/view/article/article.php +++ b/module/news/view/article/article.php @@ -13,8 +13,12 @@