forked from ZwiiCMS-Team/ZwiiCampus
News 5.1
This commit is contained in:
parent
e35688aa3e
commit
b9a4fd25ff
@ -1,3 +1,5 @@
|
|||||||
|
# Version 5.1
|
||||||
|
- Erreur de profil
|
||||||
# Version 5.0
|
# Version 5.0
|
||||||
- Gestion des permissions intégrée dans le module
|
- Gestion des permissions intégrée dans le module
|
||||||
# Version 4.5
|
# Version 4.5
|
||||||
|
@ -1 +1 @@
|
|||||||
{"name":"news","realName":"News","version":"4.4","update":"0.0","delete":true,"dataDirectory":"site\/data\/news\/"}
|
{"name":"news","realName":"News","version":"5.0","update":"0.0","delete":true,"dataDirectory":"site\/data\/news\/"}
|
@ -16,7 +16,7 @@
|
|||||||
class news extends common
|
class news extends common
|
||||||
{
|
{
|
||||||
|
|
||||||
const VERSION = '5.0';
|
const VERSION = '5.1';
|
||||||
const REALNAME = 'News';
|
const REALNAME = 'News';
|
||||||
const DATADIRECTORY = self::DATA_DIR . 'news/';
|
const DATADIRECTORY = self::DATA_DIR . 'news/';
|
||||||
|
|
||||||
@ -230,9 +230,9 @@ class news extends common
|
|||||||
// News en fonction de la pagination
|
// News en fonction de la pagination
|
||||||
for ($i = $pagination['first']; $i < $pagination['last']; $i++) {
|
for ($i = $pagination['first']; $i < $pagination['last']; $i++) {
|
||||||
// Met en forme le tableau
|
// Met en forme le tableau
|
||||||
$dateOn = helper::dateUTF8(self::$dateFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOn']), self::$i18nUI) . ' - ' . helper::dateUTF8(self::$timeFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOn']), self::$i18nUI);
|
$dateOn = helper::dateUTF8(self::$dateFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOn']), self::$i18nContent) . ' - ' . helper::dateUTF8(self::$timeFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOn']), self::$i18nContent);
|
||||||
if ($this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff'])) {
|
if ($this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff'])) {
|
||||||
$dateOff = helper::dateUTF8(self::$dateFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff']), self::$i18nUI) . ' - ' . helper::dateUTF8(self::$timeFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff']), self::$i18nUI);
|
$dateOff = helper::dateUTF8(self::$dateFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff']), self::$i18nContent) . ' - ' . helper::dateUTF8(self::$timeFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff']), self::$i18nContent);
|
||||||
} else {
|
} else {
|
||||||
$dateOff = helper::translate('Permanent');
|
$dateOff = helper::translate('Permanent');
|
||||||
}
|
}
|
||||||
@ -332,9 +332,9 @@ class news extends common
|
|||||||
// News en fonction de la pagination
|
// News en fonction de la pagination
|
||||||
for ($i = $pagination['first']; $i < $pagination['last']; $i++) {
|
for ($i = $pagination['first']; $i < $pagination['last']; $i++) {
|
||||||
// Met en forme le tableau
|
// Met en forme le tableau
|
||||||
$dateOn = $dateOn = helper::dateUTF8(self::$dateFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOn']), self::$i18nUI) . ' - ' . helper::dateUTF8(self::$timeFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOn']), self::$i18nUI);
|
$dateOn = $dateOn = helper::dateUTF8(self::$dateFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOn']), self::$i18nContent) . ' - ' . helper::dateUTF8(self::$timeFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOn']), self::$i18nContent);
|
||||||
if ($this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff'])) {
|
if ($this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff'])) {
|
||||||
$dateOff = helper::dateUTF8(self::$dateFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff']), self::$i18nUI) . ' - ' . helper::dateUTF8(self::$timeFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff']), self::$i18nUI);
|
$dateOff = helper::dateUTF8(self::$dateFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff']), self::$i18nContent) . ' - ' . helper::dateUTF8(self::$timeFormat, $this->getData(['module', $this->getUrl(0), 'posts', $newsIds[$i], 'publishedOff']), self::$i18nContent);
|
||||||
} else {
|
} else {
|
||||||
$dateOff = helper::translate('Permanent');
|
$dateOff = helper::translate('Permanent');
|
||||||
}
|
}
|
||||||
@ -548,7 +548,6 @@ class news extends common
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mise à jour du module
|
* Mise à jour du module
|
||||||
* Appelée par les fonctions index et config
|
* Appelée par les fonctions index et config
|
||||||
|
@ -5,6 +5,6 @@
|
|||||||
'option' => $this->getInput('profilAddNewsOption', helper::FILTER_BOOLEAN),
|
'option' => $this->getInput('profilAddNewsOption', helper::FILTER_BOOLEAN),
|
||||||
'config' => $this->getInput('profilAddNewsAdd', helper::FILTER_BOOLEAN) ||
|
'config' => $this->getInput('profilAddNewsAdd', helper::FILTER_BOOLEAN) ||
|
||||||
$this->getInput('profilAddNewsEdit', helper::FILTER_BOOLEAN) ||
|
$this->getInput('profilAddNewsEdit', helper::FILTER_BOOLEAN) ||
|
||||||
$this->getInput('profilAddNewsEdit', helper::FILTER_BOOLEAN) ||
|
$this->getInput('profilAddNewsDelete', helper::FILTER_BOOLEAN) ||
|
||||||
$this->getInput('profilAddNewsOption', helper::FILTER_BOOLEAN)
|
$this->getInput('profilAddNewsOption', helper::FILTER_BOOLEAN)
|
||||||
];
|
];
|
@ -5,6 +5,6 @@
|
|||||||
'option' => $this->getInput('profilEditNewsOption', helper::FILTER_BOOLEAN),
|
'option' => $this->getInput('profilEditNewsOption', helper::FILTER_BOOLEAN),
|
||||||
'config' => $this->getInput('profilEditNewsAdd', helper::FILTER_BOOLEAN) ||
|
'config' => $this->getInput('profilEditNewsAdd', helper::FILTER_BOOLEAN) ||
|
||||||
$this->getInput('profilEditNewsEdit', helper::FILTER_BOOLEAN) ||
|
$this->getInput('profilEditNewsEdit', helper::FILTER_BOOLEAN) ||
|
||||||
$this->getInput('profilEditNewsEdit', helper::FILTER_BOOLEAN) ||
|
$this->getInput('profilEditNewsDelete', helper::FILTER_BOOLEAN) ||
|
||||||
$this->getInput('profilEditNewsOption', helper::FILTER_BOOLEAN)
|
$this->getInput('profilEditNewsOption', helper::FILTER_BOOLEAN)
|
||||||
];
|
];
|
@ -9,7 +9,7 @@
|
|||||||
<?php echo template::ico('user'); ?>
|
<?php echo template::ico('user'); ?>
|
||||||
<?php echo $module::$articleSignature . ' - ';?>
|
<?php echo $module::$articleSignature . ' - ';?>
|
||||||
<?php echo template::ico('calendar-empty'); ?>
|
<?php echo template::ico('calendar-empty'); ?>
|
||||||
<?php echo helper::dateUTF8('%d %B %Y', $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'publishedOn']), self::$i18nUI) . ' - ' . helper::dateUTF8('%H:%M', $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'publishedOn']), self::$i18nUI); ?>
|
<?php echo helper::dateUTF8('%d %B %Y', $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'publishedOn']), self::$i18nContent) . ' - ' . helper::dateUTF8('%H:%M', $this->getData(['module', $this->getUrl(0), 'posts', $this->getUrl(1), 'publishedOn']), self::$i18nContent); ?>
|
||||||
<!-- Bloc edition -->
|
<!-- Bloc edition -->
|
||||||
<?php if (
|
<?php if (
|
||||||
$this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
|
$this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
<?php echo template::ico('user'); ?>
|
<?php echo template::ico('user'); ?>
|
||||||
<?php echo $news['userId']; ?>
|
<?php echo $news['userId']; ?>
|
||||||
<?php echo template::ico('calendar-empty'); ?>
|
<?php echo template::ico('calendar-empty'); ?>
|
||||||
<?php echo helper::dateUTF8($module::$dateFormat, $news['publishedOn'], self::$i18nUI) . ' - ' . helper::dateUTF8($module::$timeFormat, $news['publishedOn'], self::$i18nUI); ?>
|
<?php echo helper::dateUTF8($module::$dateFormat, $news['publishedOn'], self::$i18nContent) . ' - ' . helper::dateUTF8($module::$timeFormat, $news['publishedOn'], self::$i18nContent); ?>
|
||||||
<!-- Bloc edition -->
|
<!-- Bloc edition -->
|
||||||
<?php if (
|
<?php if (
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user