diff options
author | Philip Häusler <msquare@notrademark.de> | 2011-06-13 18:05:51 +0200 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2011-06-13 18:05:51 +0200 |
commit | 04973d1fa148381978b1251d10118e6bab86f435 (patch) | |
tree | 39f5a304342054e9da8c0452866b4f6eb69f87af /www-ssl/nonpublic/schichtplan_beamer.php | |
parent | 89fd736f36dc89becacc30dc250d7a3e93e9569f (diff) |
moved public files to public, old and yet untouched files to directories ending with _old
Diffstat (limited to 'www-ssl/nonpublic/schichtplan_beamer.php')
-rw-r--r-- | www-ssl/nonpublic/schichtplan_beamer.php | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/www-ssl/nonpublic/schichtplan_beamer.php b/www-ssl/nonpublic/schichtplan_beamer.php deleted file mode 100644 index 269660e1..00000000 --- a/www-ssl/nonpublic/schichtplan_beamer.php +++ /dev/null @@ -1,59 +0,0 @@ -<?php -require_once ('../bootstrap.php'); - -include "includes/header_start.php"; -include "includes/funktionen.php"; -include "includes/funktion_schichtplan_beamer.php"; - -$Time = time() + 3600 + 3600; -?> - -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<html> -<head> -<title>Schichtpläne für Beamer</title> -<meta http-equiv="refresh" content="30; URL=<?php echo $url . $_SERVER['PHP_SELF']; ?>" /> -</head> - -<body> - -<?php - - -echo "<table border=\"1\" width=\"100%\" height=\"100%\" cellpadding=\"0\" cellspacing=\"0\" frame=\"void\">\n"; - -echo "<colgroup span=\"4\" valign=\"center\"> - <col width=\"30\"> - <col width=\"3*\"> - <col width=\"3*\"> - <col width=\"3*\"> - </colgroup>\n"; - -echo "<tr align=\"center\">\n" . -"<td>" . gmdate("d.m.y", $Time) . "</td>\n" . -"<td>" . gmdate("H", $Time -3600) . ":00</td>\n" . -"<td>" . gmdate("H", $Time +0) . ":00</td>\n" . -"<td>" . gmdate("H", $Time +3600) . ":00</td>\n" . -"</tr>\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 = "<tr>\n<td>_" . $RoomEntry["Name"] . "_</td>\n" . $Out . "</tr>\n"; - - echo $Out; -} -?> - -</table> - -</body> -</html> |