summaryrefslogtreecommitdiff
path: root/www-ssl/admin/debug.php
diff options
context:
space:
mode:
Diffstat (limited to 'www-ssl/admin/debug.php')
-rwxr-xr-xwww-ssl/admin/debug.php18
1 files changed, 16 insertions, 2 deletions
diff --git a/www-ssl/admin/debug.php b/www-ssl/admin/debug.php
index 6c4d50c7..a1783a23 100755
--- a/www-ssl/admin/debug.php
+++ b/www-ssl/admin/debug.php
@@ -30,7 +30,7 @@ funktion_db_list("FAQ");
echo "Deaktiviert";
*/
-echo "<br>\n";
+echo "<hr>\n";
funktion_db_element_list_2row( "Tshirt-Size aller engel",
"SELECT `Size`, COUNT(`Size`) FROM `User` GROUP BY `Size`");
@@ -42,7 +42,7 @@ echo "<br>\n";
funktion_db_element_list_2row( "Tshirt nicht ausgegeben (Gekommen=1)",
"SELECT COUNT(`Size`), `Size` FROM `User` WHERE `Gekommen`='1' and `Tshirt`='0' GROUP BY `Size`");
-echo "<br>\n";
+echo "<hr>\n";
funktion_db_element_list_2row( "Hometown",
"SELECT COUNT(`Hometown`), `Hometown` FROM `User` GROUP BY `Hometown`");
@@ -50,6 +50,20 @@ echo "<br>\n";
funktion_db_element_list_2row( "Engeltypen",
"SELECT COUNT(`Art`), `Art` FROM `User` GROUP BY `Art`");
+echo "<hr>\n";
+funktion_db_element_list_2row( "Gesamte Arbeit",
+ "SELECT COUNT(*) AS `Count [x]`, SUM(Shifts.Len) as `Sum [h]` from Shifts LEFT JOIN ShiftEntry USING(SID)");
+
+echo "<br>\n";
+funktion_db_element_list_2row( "Geleisteter Arbeit",
+ "SELECT COUNT(*) AS `Count [x]`, SUM(Shifts.Len) as `Sum [h]` from Shifts LEFT JOIN ShiftEntry USING(SID) WHERE (ShiftEntry.UID!=0)");
+
+echo "<br>\n";
+funktion_db_element_list_2row( "Geleisteter Arbeit (Ohne Raum aufabau (RID=7)",
+ "SELECT COUNT(*) AS `Count [x]`, SUM(Shifts.Len) as `Sum [h]` from Shifts LEFT JOIN ShiftEntry USING(SID) WHERE (ShiftEntry.UID!=0) AND (Shifts.RID!=7)");
+
+
+
include ("../../../27c3/includes/footer.php");
?>