version 8.4.2 dates en fr

This commit is contained in:
fredtempez 2018-11-13 22:01:34 +01:00
parent 98492ad39e
commit dfceff96fe
9 changed files with 17 additions and 10 deletions

View File

@ -1,5 +1,10 @@
# ChangeLog
## Version 8.4.2
* Correction :
- Modifications de la présentation des en-têtes d'articles de Blog et de News
- Format du mois au format long et en français
## Version 8.4.1
* Correction :
- Erreur de type empêchant l'affichage des articles du blog (nombre d'articles par page)
@ -13,8 +18,7 @@
- Modification de la position des boutons retour et éditer lors de l'affichage d'un article si connecté
- Mise en forme de la composition des articles et des news
- Suppression du message de l'édition des redirections
- Modifications de la présentation des en-têtes d'articles de Blog et de News
- Format du mois au format long et en français
* Corrections :
- Accès aux pages désactivées par le sitemap
- Réduction du temps d'affichage des notifications

View File

@ -24,7 +24,7 @@ class common {
const GROUP_MEMBER = 1;
const GROUP_MODERATOR = 2;
const GROUP_ADMIN = 3;
const ZWII_VERSION = '8.4.1';
const ZWII_VERSION = '8.4.2';
public static $actions = [];
public static $coreModuleIds = [

View File

@ -1,6 +1,6 @@
<?php $layout = new layout($this); ?>
<!DOCTYPE html>
<html xmlns:og="http://ogp.me/ns#">
<html xmlns:og="http://ogp.me/ns#" lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

View File

@ -1,6 +1,6 @@
<?php $layout = new layout($this); ?>
<!DOCTYPE html>
<html xmlns:og="http://ogp.me/ns#">
<html xmlns:og="http://ogp.me/ns#" lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

View File

@ -1,6 +1,6 @@
<?php $layout = new layout($this); ?>
<!DOCTYPE html>
<html xmlns:og="http://ogp.me/ns#">
<html xmlns:og="http://ogp.me/ns#" lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

View File

@ -21,7 +21,7 @@ if(version_compare(PHP_VERSION, '5.6.0', '<')) {
/* Set locale to French */
date_default_timezone_set('Europe/Paris');
setlocale (LC_TIME, 'fra_fra');
setlocale (LC_TIME, 'fra_fra', 'french');
/**
* Initialisation de Zwii

View File

@ -9,7 +9,8 @@
<p class="signature">
<?php echo $this->getData(['user', $this->getData(['module', $this->getUrl(0), $this->getUrl(1), 'userId']), 'firstname']); ?>
<?php echo $this->getData(['user', $this->getData(['module', $this->getUrl(0), $this->getUrl(1), 'userId']), 'lastname']); ?>
le <?php echo strftime('%d %B %Y à %H:%M', $this->getData(['module', $this->getUrl(0), $this->getUrl(1), 'publishedOn'])); ?>
<?php echo utf8_encode(strftime('- %d %B %Y', $this->getData(['module', $this->getUrl(0), $this->getUrl(1), 'publishedOn']))); ?>
à <?php echo utf8_encode(strftime('%H:%M', $this->getData(['module', $this->getUrl(0), $this->getUrl(1), 'publishedOn']))); ?>
<!-- </h4> -->
</p>

View File

@ -5,7 +5,8 @@
<div class="block">
<h4>
<!-- Le <?php echo date('d M Y à H:i', $article['publishedOn']); ?> -->
Le <?php echo strftime('%d %B %Y à %H:%M', $article['publishedOn']); ?>
Le <?php echo utf8_encode(strftime('%d %B %Y', $article['publishedOn'])); ?>
à <?php echo utf8_encode(strftime('%H:%M', $article['publishedOn'])); ?>
<div class="blogComment">
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>#comment">
<?php echo count($article['comment']); ?>

View File

@ -4,7 +4,8 @@
<?php foreach($module::$news as $newsId => $news): ?>
<div class="block">
<h4>
Le <?php echo strftime('%d %B %Y à %H:%M', $news['publishedOn']); ?>
Le <?php echo utf8_encode(strftime('%d %B %Y', $news['publishedOn'])); ?>
à <?php echo utf8_encode(strftime('%H:%M', $news['publishedOn'])); ?>
</h4>
<h2><?php echo $news['title']; ?></h2>
<?php echo $news['content']; ?>