13.5.00 Blog 7.12
This commit is contained in:
parent
625308b74b
commit
1c57e8dd1d
@ -1,12 +1,13 @@
|
|||||||
# Notes de mises à jour
|
# Notes de mises à jour
|
||||||
|
|
||||||
## Versions 13.5.00
|
## Versions 13.5.00
|
||||||
** Améliorations : **
|
**Améliorations :**
|
||||||
- Optimisation du chargement des variables de classe.
|
- Optimisation du chargement des variables de classe.
|
||||||
- Suppression de redondance de déclaration des charset.
|
- Suppression de redondance de déclaration des charset.
|
||||||
|
|
||||||
**Corrections : **
|
**Corrections : **
|
||||||
- Corrige un bug de changement de mot de passe pour les comptes non admins.
|
- Corrige un bug de changement de mot de passe pour les comptes non admins.
|
||||||
|
- Blog 7.12, corrige un bug d'affichage des articles lorsque le thème Moderne est sélectionné.
|
||||||
|
|
||||||
## Versions 13.4.00
|
## Versions 13.4.00
|
||||||
** Améliorations :**
|
** Améliorations :**
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
class blog extends common
|
class blog extends common
|
||||||
{
|
{
|
||||||
|
|
||||||
const VERSION = '7.11';
|
const VERSION = '7.12';
|
||||||
const REALNAME = 'Blog';
|
const REALNAME = 'Blog';
|
||||||
const DELETE = true;
|
const DELETE = true;
|
||||||
const UPDATE = '0.0';
|
const UPDATE = '0.0';
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
# Versions 7.11
|
# Version 7.12
|
||||||
|
- Corrige un bug d'affichage des articles lorsque le thème Moderne est sélectionné.
|
||||||
|
# Version 7.11
|
||||||
- Le sélecteur de fichier affiche par défaut le chemin vers le fichier présent dans le champ.
|
- Le sélecteur de fichier affiche par défaut le chemin vers le fichier présent dans le champ.
|
||||||
# Versions 7.10
|
# Version 7.10
|
||||||
- Empêche la validation d'un commentaire lorsque le contenu est vide.
|
- Empêche la validation d'un commentaire lorsque le contenu est vide.
|
||||||
# Versions 7.8 - 7.9
|
# Versions 7.8 - 7.9
|
||||||
- Le flux RSS ne fonctionne pas si les méta de la page sont vides.
|
- Le flux RSS ne fonctionne pas si les méta de la page sont vides.
|
||||||
|
@ -1 +1 @@
|
|||||||
{"name":"blog","realName":"Blog","version":"7.10","update":"0.0","delete":true,"dataDirectory":""}
|
{"name":"blog","realName":"Blog","version":"7.12","update":"0.0","delete":true,"dataDirectory":""}
|
@ -95,70 +95,70 @@
|
|||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<?php else: ?>
|
||||||
<?php else: ?>
|
<div class="row">
|
||||||
<div class="row">
|
<?php if (
|
||||||
<?php if (
|
$article['picture'] &&
|
||||||
$article['picture'] &&
|
file_exists(self::FILE_DIR . 'source/' . $article['picture'])
|
||||||
file_exists(self::FILE_DIR . 'source/' . $article['picture'])
|
): ?>
|
||||||
): ?>
|
<div class="col3">
|
||||||
<div class="col3">
|
<?php // Déterminer le nom de la miniature
|
||||||
<?php // Déterminer le nom de la miniature
|
$parts = pathinfo($this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'picture']));
|
||||||
$parts = pathinfo($this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'picture']));
|
$thumb = 'mini_' . $parts['basename'];
|
||||||
$thumb = 'mini_' . $parts['basename'];
|
// Créer la miniature si manquante
|
||||||
// Créer la miniature si manquante
|
if (!file_exists(self::FILE_DIR . 'thumb/' . $thumb)) {
|
||||||
if (!file_exists(self::FILE_DIR . 'thumb/' . $thumb)) {
|
$this->makeThumb(
|
||||||
$this->makeThumb(
|
self::FILE_DIR . 'source/' . $article['picture'],
|
||||||
self::FILE_DIR . 'source/' . $article['picture'],
|
self::FILE_DIR . 'thumb/' . $thumb,
|
||||||
self::FILE_DIR . 'thumb/' . $thumb,
|
self::THUMBS_WIDTH
|
||||||
self::THUMBS_WIDTH
|
);
|
||||||
);
|
}
|
||||||
}
|
?>
|
||||||
?>
|
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>" class="blogPicture">
|
||||||
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>" class="blogPicture">
|
<img src="<?php echo helper::baseUrl(false) . self::FILE_DIR . 'thumb/' . $thumb; ?>"
|
||||||
<img src="<?php echo helper::baseUrl(false) . self::FILE_DIR . 'thumb/' . $thumb; ?>"
|
alt="<?php echo $article['picture']; ?>">
|
||||||
alt="<?php echo $article['picture']; ?>">
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
<div class="col9">
|
|
||||||
<?php else: ?>
|
|
||||||
<div class="col12">
|
|
||||||
<?php endif; ?>
|
|
||||||
<h2 class="blogTitle">
|
|
||||||
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>">
|
|
||||||
<?php echo $article['title']; ?>
|
|
||||||
</a>
|
|
||||||
</h2>
|
|
||||||
<div class="blogComment">
|
|
||||||
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>#comment">
|
|
||||||
<?php if ($module::$comments[$articleId]): ?>
|
|
||||||
<?php echo $module::$comments[$articleId]; ?>
|
|
||||||
<?php echo template::ico('comment', ['margin' => 'left']); ?>
|
|
||||||
<?php endif; ?>
|
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="blogDate">
|
<div class="col9">
|
||||||
<!-- bloc signature et date -->
|
<?php else: ?>
|
||||||
<?php echo template::ico('user'); ?>
|
<div class="col12">
|
||||||
<?php echo $this->signature($this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'userId'])); ?>
|
<?php endif; ?>
|
||||||
<?php echo template::ico('calendar-empty'); ?>
|
<h2 class="blogTitle">
|
||||||
<?php echo helper::dateUTF8($module::$dateFormat, $this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'publishedOn']), self::$i18nUI) . ' ' . helper::dateUTF8($module::$timeFormat, $this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'publishedOn']), self::$i18nUI); ?>
|
|
||||||
</div>
|
|
||||||
<div class="blogContent">
|
|
||||||
<?php $lenght = $this->getData(['module', $this->getUrl(0), 'config', 'articlesLenght']) !== 0 ? $this->getData(['module', $this->getUrl(0), 'config', 'articlesLenght']) : 500 ?>
|
|
||||||
<?php echo helper::subword(strip_tags($article['content'], '<br><p>'), 0, $lenght); ?>...
|
|
||||||
<div class="readMoreContainer">
|
|
||||||
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>">
|
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>">
|
||||||
<button class="readMoreButton">
|
<?php echo $article['title']; ?>
|
||||||
<?php echo helper::translate('Lire la suite'); ?>
|
</a>
|
||||||
</button>
|
</h2>
|
||||||
|
<div class="blogComment">
|
||||||
|
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>#comment">
|
||||||
|
<?php if ($module::$comments[$articleId]): ?>
|
||||||
|
<?php echo $module::$comments[$articleId]; ?>
|
||||||
|
<?php echo template::ico('comment', ['margin' => 'left']); ?>
|
||||||
|
<?php endif; ?>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="blogDate">
|
||||||
|
<!-- bloc signature et date -->
|
||||||
|
<?php echo template::ico('user'); ?>
|
||||||
|
<?php echo $this->signature($this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'userId'])); ?>
|
||||||
|
<?php echo template::ico('calendar-empty'); ?>
|
||||||
|
<?php echo helper::dateUTF8($module::$dateFormat, $this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'publishedOn']), self::$i18nUI) . ' ' . helper::dateUTF8($module::$timeFormat, $this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'publishedOn']), self::$i18nUI); ?>
|
||||||
|
</div>
|
||||||
|
<div class="blogContent">
|
||||||
|
<?php $lenght = $this->getData(['module', $this->getUrl(0), 'config', 'articlesLenght']) !== 0 ? $this->getData(['module', $this->getUrl(0), 'config', 'articlesLenght']) : 500 ?>
|
||||||
|
<?php echo helper::subword(strip_tags($article['content'], '<br><p>'), 0, $lenght); ?>...
|
||||||
|
<div class="readMoreContainer">
|
||||||
|
<a href="<?php echo helper::baseUrl() . $this->getUrl(0) . '/' . $articleId; ?>">
|
||||||
|
<button class="readMoreButton">
|
||||||
|
<?php echo helper::translate('Lire la suite'); ?>
|
||||||
|
</button>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endforeach; ?>
|
||||||
<?php endforeach; ?>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
<?php echo $module::$pages; ?>
|
<?php echo $module::$pages; ?>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user