engelsystem/www-ssl/nonpublic/schichtplan_beamer.php

65 lines
1.6 KiB
PHP
Executable File

<?php
include ("./inc/config.php");
include ("./inc/config_db.php");
include ("./inc/funktion_lang.php");
include ("./inc/funktion_user.php");
include ("./inc/funktionen.php");
include ("./inc/funktion_schichtplan_beamer.php");
$Time = time()+3600+3600;
//$Time = 1104241344;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Schichtpl&auml;ne f&uuml;r Beamer</TITLE>
<!--<link rel=stylesheet type="text/css" href="./inc/css/style1.css">-->
<meta http-equiv="refresh" content="30; URL=<?PHP echo substr($url, 0, strlen($url)-1). $_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".
// "\t<td>&nbsp;</td>\n".
"\t<td>". gmdate("d.m.y", $Time). "</td>\n".
"\t<td>". gmdate("H", $Time-3600). ":00</td>\n".
"\t<td>". gmdate("H", $Time+0). ":00</td>\n".
"\t<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);
//entfernt leere zeilen
if( $AnzahlEintraege==0 )
$Out = "";
else
$Out = "<tr>\n\t<td>_". $RoomEntry["Name"]. "_</td>\n". $Out . "</tr>\n";
echo $Out;
}
echo "</table>\n";
?>
</BODY>
</HTML>