From 4056d2f32479348585450eab87dd75d7cf66a5a6 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 18 Feb 2022 16:13:19 +0100 Subject: [PATCH] statusbutton und termine per php MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit statusbutton und termine werden dynamisch aus einem iCalendar gezogen, styling der ausgabe überarbeitet, überflüssige funktionen aus getContent.php entfernt, fehlerbehandlung eingebaut --- public/index.php | 43 +++++++++++------------------------- public/style.css | 12 ++++++++++ src/getContent.php | 55 ++++------------------------------------------ 3 files changed, 29 insertions(+), 81 deletions(-) diff --git a/public/index.php b/public/index.php index 28642e2..b4f614a 100644 --- a/public/index.php +++ b/public/index.php @@ -1,13 +1,6 @@ - +
- - +
-END; - - } else { - echo << -
niemand
-

Niemand ist im Raum

-

Keine Hackerseele anwesend

-
-END; - } -} - function getKrautButton(bool $status) { if ($status) { - echo << -Person -

Raum ist geöffnet

- -END; - + echo 'Raumstatus Icon - Raum ist geöffnet'; } else { - echo << -niemand -

Raum ist geschlossen

- -END; + echo 'Raumstatus Icon - Raum ist geschlossen'; } }