summaryrefslogtreecommitdiff
path: root/www-ssl_old/admin/room.php
blob: 4854acb6d37c91b7369e8a25876117496df7996e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<?php
$title = "R&auml;ume";
$header = "Verwaltung der R&auml;ume";
include ("../../includes/header.php");
include ("../../includes/funktion_schichtplan_array.php");

$Sql = "SELECT * FROM `Room` ORDER BY `Number`, `Name`";
$Erg = mysql_query($Sql, $con);

if( !IsSet($_GET["action"]) )
{
	echo "Hallo ".$_SESSION['Nick'].
		",<br>\nhier hast du die M&ouml;glichkeit, neue R&auml;ume f&uuml;r die Schichtpl&auml;ne einzutragen ".
		"oder vorhandene abzu&auml;ndern:<br><br>\n";

	echo "<a href=\"./room.php?action=new\">- Neuen Raum/Ort eintragen</a><br>\n";
	
	echo "<table width=\"100%\" class=\"border\" cellpadding=\"2\" cellspacing=\"1\">\n";
	echo "<tr class=\"contenttopic\">\n";

	for( $i = 1; $i < mysql_num_fields($Erg); $i++ )
	{
		if( substr( mysql_field_name($Erg, $i), 0, 12) == "DEFAULT_EID_")
			echo "\t<td> Anzahl ". $EngelTypeID[substr( mysql_field_name($Erg, $i), 12)]. "</td>";
		else
			echo "\t<td>". mysql_field_name($Erg, $i)."</td>";
	}
	echo "\t<td>&Auml;ndern</td>";
	echo "</tr>";

	for( $t = 0; $t < mysql_num_rows($Erg); $t++ ) 
	{	
		echo "\t<tr class=\"content\">\n";
		for ($j = 1; $j < mysql_num_fields($Erg); $j++) 
		{
  			echo "\t\t<td>".mysql_result($Erg, $t, $j)."</td>\n";
		}
		echo "\t\t<td><a href=\"./room.php?action=change&RID=".mysql_result($Erg, $t, "RID")."\">###</a></td>\n";
		echo "\t</tr>\n";
	} // ende Auflistung Raeume
	echo "</table>";
} 
else 
{

UnSet($SQL);

switch ($_GET["action"]) {

case 'new':
	echo "Neuen Raum einrichten: <br>";
	echo "<form action=\"./room.php\" method=\"GET\">\n";
	echo "<table>\n";
	
	for( $Uj = 1; $Uj < mysql_num_fields($Erg); $Uj++ )
	{
		if( (mysql_field_name($Erg, $Uj) == "show") || (mysql_field_name($Erg, $Uj) == "FromPentabarf") )
		{
			echo "<tr><td>". mysql_field_name($Erg, $Uj). "</td>".
			     "<td>".
			     "<input type=\"radio\" name=\"". mysql_field_name($Erg, $Uj). "\" value=\"Y\">Yes".
			     "<input type=\"radio\" name=\"". mysql_field_name($Erg, $Uj). "\" value=\"N\">No".
			     "</td></tr>\n";
		}
		else
		{
			//sonderfall fuer Default Engel 
			if( substr( mysql_field_name($Erg, $Uj), 0, 12) == "DEFAULT_EID_")
				$FeldName = "Anzahl ". $EngelTypeID[substr( mysql_field_name($Erg, $Uj), 12)];
			else
				$FeldName = mysql_field_name($Erg, $Uj);
		
			echo "<td>$FeldName</td>".
		        	"<td><input type=\"text\" size=\"40\" name=\"".mysql_field_name($Erg, $Uj)."\">";
			echo "</td></tr>\n";
		}
	}
	echo "</table>\n";
	echo "<input type=\"hidden\" name=\"action\" value=\"newsave\">\n";
	echo "<input type=\"submit\" value=\"sichern...\">\n";
	echo "</form>";
	break;

case 'newsave':
	$vars = $_GET;
	$count = count($vars) - 1;
	$vars = array_splice($vars, 0, $count);
	$Keys = "";
	$Values = "";
	foreach($vars as $key => $value)
	{
		$Keys   .= ", `$key`";
		$Values .= ", '$value'";
	}
	$SQL  = "INSERT INTO `Room` (". substr( $Keys, 2). ") VALUES (". substr( $Values, 2). ")";
	SetHeaderGo2Back();
	break;

case 'change':
	if (! IsSet($_GET["RID"])) 
		echo "Fehlerhafter Aufruf!"; 
	else
	{
		$SQL2 = "SELECT * FROM `Room` WHERE `RID`='". $_GET["RID"]. "'";
		$ERG = mysql_query($SQL2, $con);
		
		if( mysql_num_rows( $ERG)>0)
		{
			echo "Raum ab&auml;ndern:\n";
			echo "Hier kannst du eintragen, welche und wieviele Engel f&uuml;r den Raum zur Verf?gung stehen m&uuml;ssen.";	
			echo "<form action=\"./room.php\" method=\"GET\">\n";
			echo "<table>\n";
		
			for ($Uj = 1; $Uj < mysql_num_fields($ERG); $Uj++)
			{
				if( (mysql_field_name($ERG, $Uj) == "show") || (mysql_field_name($ERG, $Uj) == "FromPentabarf") )
				{
					echo "<tr><td>". mysql_field_name($Erg, $Uj). "</td>".
					     "<td>".
					     "<input type=\"radio\" name=\"e". mysql_field_name($ERG, $Uj). 
					     	"\" value=\"Y\"". (mysql_result($ERG, 0, $Uj)=='Y'? " checked":""). ">Yes".
					     "<input type=\"radio\" name=\"e". mysql_field_name($ERG, $Uj). 
					     	"\" value=\"N\"". (mysql_result($ERG, 0, $Uj)=='N'? " checked":""). ">No".
					     "</td></tr>\n";
				}
				else
				{
					if( substr( mysql_field_name($ERG, $Uj), 0, 12) == "DEFAULT_EID_")
						//sonderfall fuer Default Engel 
						$FeldName = "Anzahl ". $EngelTypeID[substr( mysql_field_name($ERG, $Uj), 12)];
					else
						$FeldName = mysql_field_name($ERG, $Uj);
					echo "<tr><td>$FeldName</td>".
					     "<td><input type=\"text\" size=\"40\" name=\"e".mysql_field_name($ERG, $Uj)."\" ".
					     "value=\"".mysql_result($ERG, 0, $Uj)."\">".
					     "</td></tr>\n";
				}
			}
			echo "</table>\n";
			echo "<input type=\"hidden\" name=\"eRID\" value=\"". $_GET["RID"]. "\">\n";
			echo "<input type=\"hidden\" name=\"action\" value=\"changesave\">\n";
			echo "<input type=\"submit\" value=\"sichern...\">\n";
			echo "</form>";
			echo "<form action=\"./room.php\" method=\"GET\">\n";
			echo "<input type=\"hidden\" name=\"RID\" value=\"". $_GET["RID"]. "\">\n";
			echo "<input type=\"hidden\" name=\"action\" value=\"delete\">\n";
			echo "<input type=\"submit\" value=\"L&ouml;schen...\">";
			echo "</form>";
		}
		else
			echo "FEHLER: Room ID ". $_GET["RID"]. " nicht gefunden";
	}
	break;
	
case 'changesave':
	$sql="";
		$vars = $_GET;
		$count = count($vars) - 2;
		$vars = array_splice($vars, 0, $count);
		foreach($vars as $key => $value)
		{
	 		$keys = substr($key,1);
			$sql .= ", `".$keys."`='".$value."' ";
		}
	$SQL = "UPDATE `Room` SET ". substr($sql, 2). " WHERE `RID`='". $_GET["eRID"]. "'";
	SetHeaderGo2Back();
	break;

case 'delete':
	if (IsSet($_GET["RID"])) {
		$SQL="DELETE FROM `Room` WHERE `RID`='". $_GET["RID"]. "'";		
	} else {
		echo "Fehlerhafter Aufruf";
	}
	SetHeaderGo2Back();
	break;

} //switch


// Update ???

if (IsSet($SQL)){ 
//	echo $SQL; 
	// hier muesste das SQL ausgefuehrt werden...
	$Erg = db_query($SQL, "exec SQL");
	if ($Erg == 1) 
	     echo "&Auml;nderung wurde gesichert...<br>";
	else
	{
	     echo "Fehler beim speichern... bitte noch ein mal probieren :)";
	     echo "<br><br>".mysql_error( $con ). "<br>($SQL)<br>";
	}
} // Ende Update								

} //IF IsSet($action)

include ("../../includes/footer.php");
?>