From 04973d1fa148381978b1251d10118e6bab86f435 Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Mon, 13 Jun 2011 18:05:51 +0200 Subject: moved public files to public, old and yet untouched files to directories ending with _old --- www-ssl_old/nonpublic/schichtplan_beamer.php | 59 ++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 www-ssl_old/nonpublic/schichtplan_beamer.php (limited to 'www-ssl_old/nonpublic/schichtplan_beamer.php') diff --git a/www-ssl_old/nonpublic/schichtplan_beamer.php b/www-ssl_old/nonpublic/schichtplan_beamer.php new file mode 100644 index 00000000..269660e1 --- /dev/null +++ b/www-ssl_old/nonpublic/schichtplan_beamer.php @@ -0,0 +1,59 @@ + + + + + +Schichtpläne für Beamer + + + + + +\n"; + +echo " + + + + + \n"; + +echo "\n" . +"" . gmdate("d.m.y", $Time) . "\n" . +"" . gmdate("H", $Time -3600) . ":00\n" . +"" . gmdate("H", $Time +0) . ":00\n" . +"" . gmdate("H", $Time +3600) . ":00\n" . +"\n"; + +foreach ($Room as $RoomEntry) { + // var-init + $AnzahlEintraege = 0; + + $Out = ausgabe_Zeile($RoomEntry["RID"], $Time -3600, $AnzahlEintraege); + $Out .= ausgabe_Zeile($RoomEntry["RID"], $Time, $AnzahlEintraege); + $Out .= ausgabe_Zeile($RoomEntry["RID"], $Time +3600, $AnzahlEintraege); + + if ($AnzahlEintraege == 0) + $Out = ""; + else + $Out = "\n_" . $RoomEntry["Name"] . "_\n" . $Out . "\n"; + + echo $Out; +} +?> + + + + + -- cgit v1.2.3-54-g00ecf