summaryrefslogtreecommitdiff
path: root/www-ssl/admin/UserPicture.php
blob: 798d5d84a8ea6c6d636b418e9daa4e7b297d719c (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
<?php
$title = "UserPicture";
$header = "Verwaltung der User Picture";
include ("./inc/header.php");
include ("./inc/funktion_user.php");
include ("./inc/funktion_schichtplan_aray.php");


if( IsSet($_GET["action"]) )
{
	UnSet($SQL);

	switch ($_GET["action"]) 
	{
		case 'SetN':
			if (IsSet($_GET["UID"]))
			{
				echo "Bild von '". UID2Nick( $_GET["UID"]). "' wurde gesperrt:<br>";
				$SQL = "UPDATE `UserPicture` SET `show`='N' WHERE `UID`='". $_GET["UID"]. "'";
			}
			else
				echo "Fehlerhafter Aufruf";
			break;
		case 'SetY':
			if (IsSet($_GET["UID"]))
			{
				echo "Bild von '". UID2Nick( $_GET["UID"]). "' wurde Freigegeben:<br>";
				$SQL = "UPDATE `UserPicture` SET `show`='Y' WHERE `UID`='". $_GET["UID"]. "'";
			}
			else
				echo "Fehlerhafter Aufruf";
			break;
		case 'del':
			echo "Wollen Sie das Bild von '". UID2Nick( $_GET["UID"]). "' wirklich l�schen? ".
				"<a href=\"./UserPicture.php?action=delYes&UID=". $_GET["UID"]. "\">Yes</a>";
			break;
		case 'delYes':
			if (IsSet($_GET["UID"]))
			{
				echo "Bild von '". UID2Nick( $_GET["UID"]). "' wurde gel�scht:<br>";
				$SQL = "DELETE FROM `UserPicture` WHERE `UID`='". $_GET["UID"]. "' LIMIT 1";
			}
			else
				echo "Fehlerhafter Aufruf";
			break;
		default:	
			echo "Fehlerhafter Aufruf";
			
	} //switch

	// Update ???
	if (IsSet($SQL))
	{ 
		// hier muesste das SQL ausgefuehrt werden...
		$Erg = mysql_query($SQL, $con);
		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								
	echo "<br>\n<hr width=\"100%\">\n<br>\n\n";
} //IF IsSet($action)


//ausgabe der Liste
$Sql = "SELECT * FROM `UserPicture` WHERE `UID`>0;";
$Erg = mysql_query($Sql, $con);
	
echo "Hallo ". $_SESSION['Nick']. ",<br>\nhier hast du die M&ouml;glichkeit, die Bilder der Engel freizugeben:<br><br>\n";

echo "<table width=\"100%\" class=\"border\" cellpadding=\"2\" cellspacing=\"1\">\n";
echo "<tr class=\"contenttopic\">\n";
echo "\t<td>User</td>\n";
echo "\t<td>Bild</td>\n";
echo "\t<td>Status</td>\n";
echo "\t<td>L�schen</td>\n";
echo "</tr>";

for( $t = 0; $t < mysql_num_rows($Erg); $t++ ) 
{	
	$UID = mysql_result($Erg, $t, "UID");
	echo "\t<tr class=\"content\">\n";
 		
	echo "\t\t<td>". UID2Nick(mysql_result($Erg, $t, "UID")). "</td>\n";
	echo "\t\t<td>". displayPictur( $UID, 0). "</td>\n";
	
	if( GetPicturShow( $UID) == "Y")	
		echo "\t\t<td><a href=\"./UserPicture.php?action=SetN&UID=$UID\">sperren</a></td>\n";
	elseif( GetPicturShow( $UID) == "N")
		echo "\t\t<td><a href=\"./UserPicture.php?action=SetY&UID=$UID\">freigeben</a></td>\n";
	else
		echo "\t\t<td>ERROR: show='". GetPicturShow( $UID). "'</td>\n";
	echo "\t\t<td><a href=\"./UserPicture.php?action=del&UID=$UID\">del</a></td>\n";
	echo "\t</tr>\n";
} // ende Auflistung Raeume
echo "</table>";

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