summaryrefslogtreecommitdiff
path: root/www-ssl/admin/aktiv.php
blob: e0ddf3a4de765c7c3645dd3ac24d2c0344590247 (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
<?PHP

$title = "akive Engel";
$header = "Liste der aktiven Engel";
include ("./inc/header.php");
include ("./inc/funktion_db_list.php");
include ("./inc/funktion_user.php");

echo "<form action=\"./aktiv.php\" method=\"post\">";
echo Get_Text("pub_aktive_Text1")."<br>\n";
echo Get_Text("pub_aktive_Text2")."<br><br>\n";
	
// auswahlbox
echo Get_Text("pub_aktive_Text31")."\n";
echo "<select name=\"Anzahl\">\n";
for( $i=0; $i<50; $i++) 
	echo "\t<option value=\"$i\">$i</option>\n";
echo "</select>";
echo Get_Text("pub_aktive_Text32")."<br><br>\n";
echo "<input type=\"submit\" name=\"SendType\" value=\"Show..\">\n";
echo "<input type=\"submit\" name=\"SendType\" value=\"Write..\">\n";
echo "</form>\n";

echo "<form action=\"./aktiv.php\" method=\"post\">\n";
	echo "\t<br><input type=\"submit\" name=\"ResetActive\" value=\"reset Active setting\">\n";
echo "</form>\n";

if( Isset($_POST["ResetActive"]) )
{
	$SQLreset = "UPDATE `User` SET `Aktiv` = '0'";
	$ErgReset = mysql_query($SQLreset, $con);
	if ($ErgReset != 1)
		echo "Fehler beim zuruecksetzen der Activ\n";
	else
		echo "Active wurde erfolgreich zurueckgesetzt\n";
}

if( IsSet($_POST["Anzahl"]) )
	echo "<br>\n\n".Get_Text("pub_aktive_Text5_1"). $_POST["Anzahl"]. Get_Text("pub_aktive_Text5_2"). ":";

echo "<br><br>\n\n";

//ausgabe tabelle
echo "<table width=\"100%\" class=\"border\" cellpadding=\"2\" cellspacing=\"1\">\n";
echo "<tr class=\"contenttopic\">\n";
echo "\t<td>". Get_Text("pub_aktive_Nick"). "</td>\n";
echo "\t<td>". Get_Text("pub_aktive_Anzahl"). "</td>\n";
echo "\t<td>". Get_Text("pub_aktive_Time"). "</td>\n";
echo "\t<td>". Get_Text("pub_aktive_Active"). "</td>\n";
echo "</tr>\n";
	
$SQL = "SELECT ShiftEntry.UID, COUNT(ShiftEntry.UID) AS NR, SUM(Shifts.Len) as LEN ".
	"FROM `ShiftEntry` ".
	"LEFT JOIN `Shifts` ON ShiftEntry.SID=Shifts.SID ".
	"WHERE NOT UID=0 ".
	"GROUP BY UID ".
	"ORDER BY LEN DESC, NR DESC, UID ";
$Erg = mysql_query($SQL, $con);
echo mysql_error($con);
$rowcount = mysql_num_rows($Erg);

echo "Anzahl eintraege: $rowcount<br><br>";

for ($i=0; $i<$rowcount; $i++)
{
	echo "\n\n\t<tr class=\"content\">\n";
	echo "\t\t<td>". UID2Nick(mysql_result($Erg, $i, "UID")). "</td>\n";
	echo "\t\t<td>". mysql_result($Erg, $i, "NR"). "</td>\n";
	echo "\t\t<td>". mysql_result($Erg, $i, "LEN"). "h</td>\n";
	echo "\t\t<td>";
	if (IsSet($_POST["Anzahl"]))
	{	
		if( $_POST["Anzahl"] < mysql_result($Erg, $i, "LEN") )
		{
			if( $_POST["SendType"]=="Show..")
				echo "show set";
			else
			{
				$SQL2="UPDATE User SET Aktiv=1 WHERE UID=". mysql_result($Erg, $i, "UID"). " LIMIT 1";
				$Erg2 = mysql_query($SQL2, $con);
				if ($Erg2 != 1)
					echo "Fehler beim speichern bei Engel ".UID2Nick(mysql_result($Erg, $i, "UID"));
				else
					echo "write set";
			}
		}
	}
	echo "</td>\n";
	echo "\t</tr>\n";
} // ende Auflistung aktive Engel 

echo "</table>";

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