summaryrefslogtreecommitdiff
path: root/www-ssl/admin/EngelType.php
blob: 29df5ad7f37f25344846e8d439dece5d5da42f67 (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
<?php
$title = "R&auml;ume";
$header = "Verwaltung der R&auml;ume";
include ("../../includes/header.php");
include("../../includes/funktion_db.php");

function runSQL( $SQL)
{
	global $con;
	// hier muesste das SQL ausgefuehrt werden...
	$Erg = mysql_query($SQL, $con);
	if ($Erg) 
	{
		echo "&Auml;nderung wurde gesichert...<br>";
		echo "[$SQL]<br>"; 
		return 1;
	} 
	else 
	{
		echo "Fehler beim speichern... bitte noch ein mal probieren :)";
		echo "<br><br>".mysql_error( $con ). "<br>";
		echo "[$SQL]<br>"; 
		return 0;
	}
}

function runSQL_log( $SQL, $commed)
{
	global $con;
	// hier muesste das SQL ausgefuehrt werden...
	$Erg = db_query($SQL, $commed);
	if ($Erg) 
	{
		echo "&Auml;nderung wurde gesichert...<br>";
		echo "[$SQL]<br>"; 
		return 1;
	} 
	else 
	{
		echo "Fehler beim speichern... bitte noch ein mal probieren :)";
		echo "<br><br>".mysql_error( $con ). "<br>";
		echo "[$SQL]<br>"; 
		return 0;
	}
}



$Sql = "SELECT * FROM `EngelType` ORDER BY `NAME`";
$Erg = mysql_query($Sql, $con);

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

	echo "<a href=\"./EngelType.php?action=new\">- Neuen EngelType 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++ )
	{
		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=\"./EngelType.php?action=change&TID=".mysql_result($Erg, $t, "TID")."\">###</a></td>\n";
		echo "\t</tr>\n";
	} // ende Auflistung Raeume
	echo "</table>";
} 
else 
{

switch ($_GET["action"]) {

case 'new':
	echo "Neuen EngelType einrichten: <br>";
	echo "<form action=\"./EngelType.php\" method=\"GET\">\n";
	echo "<table>\n";
	
	for( $Uj = 1; $Uj < mysql_num_fields($Erg); $Uj++ )
	{
	    echo "<td>".mysql_field_name($Erg, $Uj)."</td>".
	         "<td><input type=\"text\" size=\"40\" name=\"".mysql_field_name($Erg, $Uj)."\"></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'";
	}
	
	if( runSQL_log( "INSERT INTO `EngelType` (". substr($Keys, 2). ") VALUES (". substr($Values, 2). ")", 
			"save new EngelType") )
	{
		SetHeaderGo2Back();
		
		$SQL2 = "SELECT * FROM `EngelType` WHERE `Name`='". $_GET["Name"]. "'";
		$ERG = mysql_query($SQL2, $con);
	
		if( mysql_num_rows($ERG) == 1)
			runSQL_log( "ALTER TABLE `Room` ADD `DEFAULT_EID_". mysql_result( $ERG, 0, 0). 
				     "` INT DEFAULT '0' NOT NULL;",
				    "add new EngelType in Romm Table");
	}
	break;

case 'change':
	if (! IsSet($_GET["TID"])) 
		echo "Fehlerhafter Aufruf!"; 
	else
	{
		echo "Raum ab&auml;ndern:\n";
		echo "Hier kannst du eintragen, den EngelType &auml;ndern.";
		echo "<form action=\"./EngelType.php\" method=\"GET\">\n";
		echo "<table>\n";
	
		$SQL2 = "SELECT * FROM `EngelType` WHERE `TID`='". $_GET["TID"]. "'";
		$ERG = mysql_query($SQL2, $con);
        
	        for ($Uj = 1; $Uj < mysql_num_fields($ERG); $Uj++)
			echo "<tr><td>". mysql_field_name($ERG, $Uj). "</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=\"eTID\" value=\"". $_GET["TID"]. "\">\n";
		echo "<input type=\"hidden\" name=\"action\" value=\"changesave\">\n";
		echo "<input type=\"submit\" value=\"sichern...\">\n";
		echo "</form>";
	        echo "<form action=\"./EngelType.php\" method=\"GET\">\n";
	        echo "<input type=\"hidden\" name=\"TID\" value=\"". $_GET["TID"]. "\">\n";
	        echo "<input type=\"hidden\" name=\"action\" value=\"delete\">\n";
	        echo "<input type=\"submit\" value=\"L&ouml;schen...\">";
	        echo "</form>";
	}
	break;
	
case 'changesave':
        $vars = $_GET;
        $count = count($vars) - 2;
        $vars = array_splice($vars, 0, $count);
	$keys="";
	$sql="";
        foreach($vars as $key => $value)
	{
  	      $keys = substr( $key, 1);
	      $sql .= ", `". $keys. "`='". $value. "'";
        }
	runSQL_log( "UPDATE `EngelType` SET ". substr($sql, 2). " WHERE `TID`='". $_GET["eTID"]. "'", 
		    "Save Change EngelType");
	SetHeaderGo2Back();
	break;

case 'delete':
	if (IsSet($_GET["TID"])) 
	{
		if( runSQL_log( "DELETE FROM `EngelType` WHERE `TID`='". $_GET["TID"]. "'", "delete EngelType"))
			runSQL_log( "ALTER TABLE `Room` DROP `DEFAULT_EID_". $_GET["TID"]. "`;", 
					"delete EngelType in Room Table");
	}
	else
		echo "Fehlerhafter Aufruf";
	SetHeaderGo2Back();
	break;
}
}

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