2005-09-10 19:25:43 +02:00
|
|
|
|
<?php
|
|
|
|
|
$title = "Himmel";
|
|
|
|
|
$header = "Mein Schichtplan";
|
|
|
|
|
|
|
|
|
|
include ("./inc/header.php");
|
|
|
|
|
include ("./inc/funktionen.php");
|
|
|
|
|
include ("./inc/funktion_schichtplan.php");
|
2005-11-22 18:25:49 +01:00
|
|
|
|
include ("./inc/funktion_schichtplan_aray.php");
|
2005-09-10 19:25:43 +02:00
|
|
|
|
|
|
|
|
|
|
2005-11-06 01:44:48 +01:00
|
|
|
|
If( !IsSet($_GET["action"]) )
|
2005-09-10 19:25:43 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
echo Get_Text("Hello").$_SESSION['Nick'].", <br>\n";
|
|
|
|
|
echo Get_Text("pub_mywake_beschreibung1")."<br>\n";
|
|
|
|
|
echo Get_Text("pub_mywake_beschreibung2")."<br><br>\n";
|
|
|
|
|
echo Get_Text("pub_mywake_beschreibung3").($LETZTES_AUSTRAGEN).
|
|
|
|
|
Get_Text("pub_mywake_beschreibung4")."<br><br>\n";
|
|
|
|
|
|
|
|
|
|
$SQL = "SELECT *, `ShiftEntry`.`Comment`, `ShiftEntry`.`TID` FROM `Shifts` ".
|
|
|
|
|
"INNER JOIN `ShiftEntry` ".
|
|
|
|
|
"ON `Shifts`.`SID`=`ShiftEntry`.`SID` ".
|
|
|
|
|
"WHERE `ShiftEntry`.`UID`='". $_SESSION['UID']. "' ".
|
|
|
|
|
"ORDER BY `DateS`";
|
|
|
|
|
$erg = mysql_query($SQL, $con);
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
<table border="0" class="border" cellpadding="2" cellspacing="1">
|
|
|
|
|
<tr>
|
2005-11-30 23:13:38 +01:00
|
|
|
|
<td class="contenttopic"><b><?PHP echo Get_Text("pub_mywake_Datum");?></b></td>
|
|
|
|
|
<td class="contenttopic"><b><?PHP echo Get_Text("pub_mywake_Uhrzeit");?></b></td>
|
|
|
|
|
<td class="contenttopic"><b><?PHP echo Get_Text("pub_mywake_Len");?></b></td>
|
2005-12-06 19:45:58 +01:00
|
|
|
|
<td class="contenttopic"><b><?PHP echo Get_Text("pub_mywake_Name");?></b></td>
|
2005-11-30 23:13:38 +01:00
|
|
|
|
<td class="contenttopic"><b><?PHP echo Get_Text("pub_mywake_Ort");?></b></td>
|
|
|
|
|
<td class="contenttopic"><b><?PHP echo Get_Text("pub_mywake_Bemerkung");?></b></td>
|
|
|
|
|
<td class="contenttopic"><b><?PHP echo Get_Text("pub_mywake_Austragen");?></b></td>
|
2005-09-10 19:25:43 +02:00
|
|
|
|
</tr>
|
2005-11-30 23:13:38 +01:00
|
|
|
|
<?PHP
|
2005-09-10 19:25:43 +02:00
|
|
|
|
|
|
|
|
|
for( $i=0; $i<mysql_num_rows( $erg ); $i++ )
|
|
|
|
|
{
|
|
|
|
|
echo "<tr class=\"content\">";
|
|
|
|
|
|
|
|
|
|
echo "<td>". substr(mysql_result( $erg, $i, "DateS" ), 0, 10). "</td>\n";
|
|
|
|
|
echo "<td>". substr(mysql_result( $erg, $i, "DateS" ), 11). "</td>\n";
|
|
|
|
|
echo "<td>". mysql_result( $erg, $i, "Len" ). " h</td>\n";
|
2005-12-06 19:45:58 +01:00
|
|
|
|
echo "<td>". mysql_result( $erg, $i, "Man" ). "</td>\n";
|
2005-09-10 19:25:43 +02:00
|
|
|
|
echo "<td>". $RoomID[mysql_result( $erg, $i, "RID" )]. "<br>\n".
|
|
|
|
|
"(". TID2Type(mysql_result( $erg, $i, "TID" )).Get_Text("inc_schicht_engel"). ")".
|
|
|
|
|
"</td>\n";
|
|
|
|
|
echo "<td><pre style=\"font-family:Fixedsys,Courier; padding:12x;\">\n".
|
|
|
|
|
mysql_result( $erg, $i, "Comment" ).
|
|
|
|
|
"\n</pre>\n";
|
|
|
|
|
echo "<br><a href=\"./myschichtplan.php?action=edit&SID=\n".
|
|
|
|
|
mysql_result( $erg, $i, "SID" )."\"># vi #</a></td>\n";
|
|
|
|
|
|
|
|
|
|
// bis $LETZTES_AUSTRAGEN (aus dem config-file) soll es moeglich sein, seine Schichten
|
|
|
|
|
//// selber noch austragen zu koennen...
|
|
|
|
|
$schichtdate = mysql_result( $erg, $i, "DateS" );
|
|
|
|
|
ereg( "^([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}):([0-9]{2})", $schichtdate, $res );
|
|
|
|
|
$info["year"] = $res[1];
|
|
|
|
|
$info["month"] = $res[2];
|
|
|
|
|
$info["day"] = $res[3];
|
|
|
|
|
$info["hour"] = $res[4];
|
|
|
|
|
$info["min"] = $res[5];
|
|
|
|
|
$info["sec"] = $res[6];
|
|
|
|
|
$schichtdatum = (mktime($info["hour"],$info["min"],$info["sec"],$info["month"],$info["day"],$info["year"]));
|
|
|
|
|
$lastAustragen = $LETZTES_AUSTRAGEN*3600;
|
|
|
|
|
$nowdate = time();
|
|
|
|
|
// wenn Schichtbeginn > jetziges Datum + $LETZTES_AUSTRAGEN - Stunden soll ein Austragen
|
|
|
|
|
// noch m<>glich sein
|
|
|
|
|
if( $schichtdatum > ($lastAustragen + $nowdate) )
|
|
|
|
|
echo "<td> <a href=\"./myschichtplan.php?action=austragen&SID=".
|
|
|
|
|
mysql_result( $erg, $i, "SID" )."\">".
|
|
|
|
|
Get_Text("pub_mywake_austragen")."</a></td>\n";
|
|
|
|
|
else
|
|
|
|
|
echo "<td>". Get_Text("pub_mywake_austragen_n_c"). "</td>\n";
|
|
|
|
|
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
}
|
|
|
|
|
echo "</table>\n\n";
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2005-11-06 01:44:48 +01:00
|
|
|
|
If( $_GET["action"] == "austragen" )
|
2005-09-10 19:25:43 +02:00
|
|
|
|
{
|
|
|
|
|
echo Get_Text("pub_mywake_delate1")."<br>\n";
|
|
|
|
|
|
2006-12-04 20:54:51 +01:00
|
|
|
|
$sql = "SELECT * FROM `Shifts` WHERE (`SID` = '". $_GET["SID"]. "')";
|
2005-09-10 19:25:43 +02:00
|
|
|
|
$Erg = mysql_query($sql, $con);
|
|
|
|
|
|
|
|
|
|
$schichtdate = mysql_result( $Erg, 0, "DateS" );
|
|
|
|
|
ereg( "^([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}):([0-9]{2})", $schichtdate, $res );
|
|
|
|
|
$info["year"] = $res[1];
|
|
|
|
|
$info["month"] = $res[2];
|
|
|
|
|
$info["day"] = $res[3];
|
|
|
|
|
$info["hour"] = $res[4];
|
|
|
|
|
$info["min"] = $res[5];
|
|
|
|
|
$info["sec"] = $res[6];
|
|
|
|
|
$schichtdatum = (mktime($info["hour"],$info["min"],$info["sec"],$info["month"],$info["day"],$info["year"]));
|
|
|
|
|
$lastAustragen = $LETZTES_AUSTRAGEN*3600;
|
|
|
|
|
$nowdate = time();
|
|
|
|
|
// wenn Schichtbeginn > jetziges Datum + $LETZTES_AUSTRAGEN - Stunden soll ein Austragen
|
|
|
|
|
// noch m<>glich sein
|
|
|
|
|
if( $schichtdatum > ($lastAustragen + $nowdate) )
|
|
|
|
|
{
|
|
|
|
|
$sql2 = "UPDATE `ShiftEntry` ".
|
|
|
|
|
"SET `UID` = '0', `Comment` = NULL ".
|
2005-11-06 01:44:48 +01:00
|
|
|
|
"WHERE `SID` = '". $_GET["SID"]. "' AND `UID` = '". $_SESSION['UID']. "' LIMIT 1;";
|
2005-09-10 19:25:43 +02:00
|
|
|
|
$Erg2 = mysql_query($sql2, $con);
|
|
|
|
|
if ($Erg2 == 1)
|
|
|
|
|
echo Get_Text("pub_mywake_add_ok"). "\n";
|
|
|
|
|
else
|
|
|
|
|
echo Get_Text("pub_mywake_add_ko"). "\n";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
echo Get_Text("pub_mywake_after"). "\n";
|
|
|
|
|
}
|
2005-11-06 01:44:48 +01:00
|
|
|
|
elseif( $_GET["action"] == "edit" )
|
2005-09-10 19:25:43 +02:00
|
|
|
|
{
|
|
|
|
|
echo Get_Text("pub_myshift_Edit_Text1"). "\n";
|
|
|
|
|
|
|
|
|
|
$sql = "SELECT * FROM `ShiftEntry` WHERE ";
|
2006-12-04 20:54:51 +01:00
|
|
|
|
$sql.= "(`SID`='". $_GET["SID"]. "' AND `UID`='". $_SESSION['UID']. "')";
|
2005-09-10 19:25:43 +02:00
|
|
|
|
$Erg = mysql_query($sql, $con);
|
|
|
|
|
|
2005-11-23 21:08:19 +01:00
|
|
|
|
echo "<form action=\"./myschichtplan.php\" method=\"GET\">\n";
|
2005-09-10 19:25:43 +02:00
|
|
|
|
echo "<textarea name='newtext' cols='50' rows='10'>". mysql_result( $Erg, 0, "Comment" ). "</textarea><br><br>\n";
|
|
|
|
|
echo "<input type=\"submit\" value=\"save\">\n";
|
2005-11-06 01:44:48 +01:00
|
|
|
|
echo "<input type=\"hidden\" name=\"SID\" value=\"". $_GET["SID"]. "\">\n";
|
2005-09-10 19:25:43 +02:00
|
|
|
|
echo "<input type=\"hidden\" name=\"action\" value=\"editSave\">\n";
|
|
|
|
|
echo "</form>";
|
|
|
|
|
}
|
2005-11-06 01:44:48 +01:00
|
|
|
|
elseif( $_GET["action"] == "editSave" )
|
2005-09-10 19:25:43 +02:00
|
|
|
|
{
|
|
|
|
|
echo Get_Text("pub_myshift_EditSave_Text1"). "<br>\n";
|
|
|
|
|
$sql = "UPDATE `ShiftEntry` ".
|
2006-12-04 20:54:51 +01:00
|
|
|
|
"SET `Comment` = '". $_GET["newtext"]. "' ".
|
2005-11-06 01:44:48 +01:00
|
|
|
|
"WHERE `SID`='". $_GET["SID"]. "' AND `UID`='". $_SESSION['UID']. "' LIMIT 1;";
|
2005-09-10 19:25:43 +02:00
|
|
|
|
$Erg = mysql_query($sql, $con);
|
|
|
|
|
if ($Erg == 1)
|
|
|
|
|
echo "\t ...". Get_Text("pub_myshift_EditSave_OK"). "\n";
|
|
|
|
|
else
|
|
|
|
|
echo "\t ...". Get_Text("pub_myshift_EditSave_KO"). "\n";
|
|
|
|
|
SetHeaderGo2Back();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
include ("./inc/footer.php");
|
|
|
|
|
?>
|