From df8d64debc84de2c89e6700f1f2b05b224fff900 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 24 Aug 2021 15:35:35 +0200 Subject: Initial commit --- index.php | 188 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 188 insertions(+) create mode 100644 index.php (limited to 'index.php') diff --git a/index.php b/index.php new file mode 100644 index 0000000..c60b386 --- /dev/null +++ b/index.php @@ -0,0 +1,188 @@ + 0) { + $file = date("Y-m-d", strtotime("+" . $_GET['next'] . " day")); + $number = (int)date("Ymd", strtotime("+" . $_GET['next'] . " day")); + $today = (int)date("Ymd"); +} else if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 0) { + $file = date("Y-m-d", strtotime("-" . $_GET['back'] . " day")); + $number = (int)date("Ymd", strtotime("-" . $_GET['back'] . " day")); + $today = (int)date("Ymd"); +} else { + $file = date("Y-m-d"); + $number = (int)date("Ymd"); + $today = (int)date("Ymd"); +} + +if ((int)substr($number, 4) >= 320 && (int)substr($number, 4) < 621) $image = "/seasons/spring.webp"; +if ((int)substr($number, 4) >= 621 && (int)substr($number, 4) < 921) $image = "/seasons/summer.webp"; +if ((int)substr($number, 4) >= 922 && (int)substr($number, 4) < 1221) $image = "/seasons/fall.webp"; +if ((int)substr($number, 4) >= 1221) $image = "/seasons/winter.webp"; +if ((int)substr($number, 4) < 320) $image = "/seasons/winter.webp"; + +if (isset($_GET['next']) && is_integer((int)$_GET['next']) && $_GET['next'] > 0) { + if (strftime("%Y", strtotime("+" . $_GET['next'] . " day")) !== strftime("%Y")) { + $_TITLE = strftime("%a %e %b %Y", strtotime("+" . $_GET['next'] . " day")); + } else { + $_TITLE = strftime("%a %e %b", strtotime("+" . $_GET['next'] . " day")); + } +} else if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 0) { + if (strftime("%Y", strtotime("-" . $_GET['back'] . " day")) !== strftime("%Y")) { + $_TITLE = strftime("%a %e %b %Y", strtotime("-" . $_GET['back'] . " day")); + } else { + $_TITLE = strftime("%a %e %b", strtotime("-" . $_GET['back'] . " day")); + } +} else { + $_TITLE = strftime("%a %e %b"); +} + +require_once $_SERVER['DOCUMENT_ROOT'] . "/private/header.php"; +$config = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/private/config.json"), true) ?> + +

TimeTracker [Glossaire]

+

0) { + if (strftime("%Y", strtotime("+" . $_GET['next'] . " day")) !== strftime("%Y")) { + echo(strftime("%a %e %b %Y", strtotime("+" . $_GET['next'] . " day"))); + } else { + echo(strftime("%a %e %b", strtotime("+" . $_GET['next'] . " day"))); + } + } else if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 0) { + if (strftime("%Y", strtotime("-" . $_GET['back'] . " day")) !== strftime("%Y")) { + echo(strftime("%a %e %b %Y", strtotime("-" . $_GET['back'] . " day"))); + } else { + echo(strftime("%a %e %b", strtotime("-" . $_GET['back'] . " day"))); + } + } else { + echo(strftime("%a %e %b")); + } + + ?>
">[<<<]   ">[<<]   ">[<]   [Aujourd'hui]   ">[>]   ">[>>]   ">[>>>]

+
+
+ +
+ +
+ 🎂 Anniversaire de ( an 1 ? "s" : "" ?>) +
+ + +
+ +
+ + +
+ Vous consultez les informations d'aujourd'hui, les données peuvent ne pas être complètes. +
+ + $today): ?> +
+ Erreur : Vous ne pouvez pas consulter les données d'un jour qui se situe dans le futur. +
+ $number): ?> +
+ Erreur : Le gestionnaire de cette instance de TimeTracker n'été pas né à ce jour. +
+ +
+ Avertissement : Aucune donnée n'est disponible pour le jour sélectionné. +
+ + + +
+ + \ No newline at end of file -- cgit