refactor: use variable DEFAULT_TIMEZONE
This commit is contained in:
+1
-1
@@ -113,7 +113,7 @@ setSecurityHeaders();
|
|||||||
];
|
];
|
||||||
|
|
||||||
foreach($timezones as $name => $timezone):
|
foreach($timezones as $name => $timezone):
|
||||||
$targetDateLocal = new DateTime(COUNTDOWN_TARGET_DATE, new DateTimeZone('Indian/Reunion'));
|
$targetDateLocal = new DateTime(COUNTDOWN_TARGET_DATE, new DateTimeZone(DEFAULT_TIMEZONE));
|
||||||
$targetDateLocal->setTimezone(new DateTimeZone($timezone));
|
$targetDateLocal->setTimezone(new DateTimeZone($timezone));
|
||||||
|
|
||||||
// Vérifier si c'est un jour différent
|
// Vérifier si c'est un jour différent
|
||||||
|
|||||||
+3
-3
@@ -170,12 +170,12 @@ $liveStream = getLiveStream();
|
|||||||
<i class="fas fa-calendar-alt"></i>
|
<i class="fas fa-calendar-alt"></i>
|
||||||
<?php
|
<?php
|
||||||
if (!empty(NEXT_LIVE_DATE)) {
|
if (!empty(NEXT_LIVE_DATE)) {
|
||||||
$liveDate = new DateTime(NEXT_LIVE_DATE, new DateTimeZone('Indian/Reunion'));
|
$liveDate = new DateTime(NEXT_LIVE_DATE, new DateTimeZone(DEFAULT_TIMEZONE));
|
||||||
$dayFormatter = new IntlDateFormatter(
|
$dayFormatter = new IntlDateFormatter(
|
||||||
'fr_FR',
|
'fr_FR',
|
||||||
IntlDateFormatter::FULL,
|
IntlDateFormatter::FULL,
|
||||||
IntlDateFormatter::NONE,
|
IntlDateFormatter::NONE,
|
||||||
'Indian/Reunion',
|
DEFAULT_TIMEZONE,
|
||||||
IntlDateFormatter::GREGORIAN,
|
IntlDateFormatter::GREGORIAN,
|
||||||
'EEEE d MMMM'
|
'EEEE d MMMM'
|
||||||
);
|
);
|
||||||
@@ -205,7 +205,7 @@ $liveStream = getLiveStream();
|
|||||||
'fr_FR',
|
'fr_FR',
|
||||||
IntlDateFormatter::FULL,
|
IntlDateFormatter::FULL,
|
||||||
IntlDateFormatter::SHORT,
|
IntlDateFormatter::SHORT,
|
||||||
'Indian/Reunion'
|
DEFAULT_TIMEZONE
|
||||||
);
|
);
|
||||||
echo $formatter->format($liveDate);
|
echo $formatter->format($liveDate);
|
||||||
|
|
||||||
|
|||||||
@@ -58,6 +58,10 @@ if (!defined('SITE_DESCRIPTION')) define('SITE_DESCRIPTION', 'Votre plateforme d
|
|||||||
if (!defined('SITE_LOGO')) define('SITE_LOGO', 'img/logo.png');
|
if (!defined('SITE_LOGO')) define('SITE_LOGO', 'img/logo.png');
|
||||||
if (!defined('SITE_FAVICON')) define('SITE_FAVICON', 'img/favicon.png');
|
if (!defined('SITE_FAVICON')) define('SITE_FAVICON', 'img/favicon.png');
|
||||||
|
|
||||||
|
// Configuration du fuseau horaire par défaut
|
||||||
|
// Liste des fuseaux disponibles : https://www.php.net/manual/fr/timezones.php
|
||||||
|
if (!defined('DEFAULT_TIMEZONE')) define('DEFAULT_TIMEZONE', 'Indian/Reunion');
|
||||||
|
|
||||||
// Réseaux sociaux
|
// Réseaux sociaux
|
||||||
if (!defined('FACEBOOK_URL')) define('FACEBOOK_URL', '#');
|
if (!defined('FACEBOOK_URL')) define('FACEBOOK_URL', '#');
|
||||||
if (!defined('X_URL')) define('X_URL', '#');
|
if (!defined('X_URL')) define('X_URL', '#');
|
||||||
|
|||||||
@@ -136,6 +136,10 @@ define('PRIORITY_CATEGORIES', [
|
|||||||
// Favicon du site
|
// Favicon du site
|
||||||
// define('SITE_FAVICON', 'img/favicon.png');
|
// define('SITE_FAVICON', 'img/favicon.png');
|
||||||
|
|
||||||
|
// Fuseau horaire par défaut pour l'affichage des dates
|
||||||
|
// Liste des fuseaux disponibles : https://www.php.net/manual/fr/timezones.php
|
||||||
|
// define('DEFAULT_TIMEZONE', 'Indian/Reunion');
|
||||||
|
|
||||||
// =========================================
|
// =========================================
|
||||||
// Réseaux sociaux
|
// Réseaux sociaux
|
||||||
// =========================================
|
// =========================================
|
||||||
|
|||||||
+1
-1
@@ -23,7 +23,7 @@ if (file_exists($config_default_file)) {
|
|||||||
|
|
||||||
// Locale et fuseau horaire
|
// Locale et fuseau horaire
|
||||||
setlocale(LC_TIME, 'fr_FR.UTF-8');
|
setlocale(LC_TIME, 'fr_FR.UTF-8');
|
||||||
date_default_timezone_set('Indian/Reunion');
|
date_default_timezone_set(DEFAULT_TIMEZONE);
|
||||||
|
|
||||||
// Initialisation des catégories de vidéo depuis l'API
|
// Initialisation des catégories de vidéo depuis l'API
|
||||||
$peertube_categories = initCategories();
|
$peertube_categories = initCategories();
|
||||||
|
|||||||
@@ -160,12 +160,12 @@ setSecurityHeaders();
|
|||||||
<i class="fas fa-calendar-alt"></i>
|
<i class="fas fa-calendar-alt"></i>
|
||||||
<?php
|
<?php
|
||||||
if (!empty(NEXT_LIVE_DATE)) {
|
if (!empty(NEXT_LIVE_DATE)) {
|
||||||
$liveDate = new DateTime(NEXT_LIVE_DATE, new DateTimeZone('Indian/Reunion'));
|
$liveDate = new DateTime(NEXT_LIVE_DATE, new DateTimeZone(DEFAULT_TIMEZONE));
|
||||||
$dayFormatter = new IntlDateFormatter(
|
$dayFormatter = new IntlDateFormatter(
|
||||||
'fr_FR',
|
'fr_FR',
|
||||||
IntlDateFormatter::FULL,
|
IntlDateFormatter::FULL,
|
||||||
IntlDateFormatter::NONE,
|
IntlDateFormatter::NONE,
|
||||||
'Indian/Reunion',
|
DEFAULT_TIMEZONE,
|
||||||
IntlDateFormatter::GREGORIAN,
|
IntlDateFormatter::GREGORIAN,
|
||||||
'EEEE d MMMM'
|
'EEEE d MMMM'
|
||||||
);
|
);
|
||||||
@@ -195,7 +195,7 @@ setSecurityHeaders();
|
|||||||
'fr_FR',
|
'fr_FR',
|
||||||
IntlDateFormatter::FULL,
|
IntlDateFormatter::FULL,
|
||||||
IntlDateFormatter::SHORT,
|
IntlDateFormatter::SHORT,
|
||||||
'Indian/Reunion'
|
DEFAULT_TIMEZONE
|
||||||
);
|
);
|
||||||
echo $formatter->format($liveDate);
|
echo $formatter->format($liveDate);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user