-
Notifications
You must be signed in to change notification settings - Fork 7
/
statistic.php
executable file
·180 lines (156 loc) · 8.81 KB
/
statistic.php
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
<?php
// nur wenn man eingeloggt ist und admin Rechte hat
if(($_SESSION['profile']['loggedin']==1)&&($_SESSION['profile']['admin']==1)){
// Dateien einbinden
require_once($_SESSION['_config']['filepath']."functions/statisticFunctions.php");
// Objekte erzeugen
$topics=new Topic();
$qu=new Question();
$answer= new Answer();
// Überprüfung auf String / Wertzuweisung
$action=''; if(isset($_GET['action']))$action=strval($_GET['action']);
// Überbrüfung / Wertzuweisung
$t_id=0; if(isset($_GET['t_id'])) $t_id=abs(intval($_GET['t_id']));
if (isset($_REQUEST["t_id"]))$t_id=abs(intval($_REQUEST['t_id']));
// Session Variable setzen (wird benötigt um auf die Seite zurück zu kehren)
$_SESSION['values']['return_site']='statistic';
// Auswahl der gewählten Aktionen
switch ($action){
case 'topQuestions': { // beste Beantwortung
$questions=getQuestions();
if(count($questions)==0)echo '<div class="h8 centered">'.Global_07.'</div>';
else getTopQuestions($questions);
break;
}
case 'showBar':{ // als Liniendiagramm anzeigen
// Überbrüfung / Wertzuweisung
$value=""; if($_GET['value'])$value=strval($_GET['value']);
if(!ctype_alpha($value)) unset($value);
$questions=0; $questions=getQuestions($t_id) ;
$questions=getQuestionNames( $questions);
if(count($questions)==0)echo '<div class="h8 centered">'.Global_07."</div>";
else {
if($value=='topQuestions'){
$value=getTopQuestionValues($questions);
}
if($value=='topTen') $value=getTopTenValues($questions);
if($value=='flopTen') $value=getFlopTenValues($questions);
for ($i=0;$i<count($value);$i++){
unset ($value [$i] ['count']);
unset ($value [$i] ['countCorrect']);
unset ($value [$i] ['countIncorrect']);
unset ($value [$i] ['question']);
unset ($value [$i] ['percentagCorrect']);
}
showBar($value);
}
break;
}
case 'showGraph':{ // als Balkendiagramm anzeigen
// Überbrüfung / Wertzuweisung
$value=""; if($_GET['value'])$value=strval($_GET['value']);
if(!ctype_alpha($value)) unset($value);
$questions=0;$questions=getQuestions($t_id);
$questions=getQuestionNames( $questions);
if(count($questions)==0)echo '<div class="h8 centered">'.Global_07.'</div>';
else {
if($value=='topQuestions') $value=getTopQuestionValues($questions);
if($value=='topTen') $value=getTopTenValues($questions);
if($value=='flopTen') $value=getFlopTenValues($questions);
for ($i=0;$i<count($value);$i++){
unset ($value [$i] ['count']);
unset ($value [$i] ['countCorrect']);
unset ($value [$i] ['countIncorrect']);
unset ($value [$i] ['question']);
unset ($value [$i] ['percentagCorrect']);
}
showGraph($value);
}
break;
}
case 'showPassed':{ // Versuche anzeigen mit bestandenen
$value=getStatisticInfoPie($t_id);
if(($value[0][1]==0) && ($value [1][1]==0))echo '<div class="h8 centered">'.Global_07.'</div>';
else showPie($value);
break;
}
case 'topTen': { // die besten 10 antworten
$questions=0;$questions=getQuestions($t_id);
if(count($questions)==0)echo '<div class="h8 centered">'.Global_07."</div>";
else {
$topics->setTopicID($t_id);
$topics->setTopic($t_id);
$Topic =$topics->getTopicName();
echo "<br /><h2> ".Statistic_01." ".stripslashes($Topic)."<br /></h2>";
getTopTenCorrect($questions);
}
break;
}
case 'flopTen':{ // die 10 schlechtest beantworteten Fragen
$questions=0;$questions=getQuestions($t_id);
if(count($questions)==0)echo '<div class="h8 centered">'.Global_07."</div>";
else{
$topics->setTopicID($t_id);
$topics->setTopic($t_id);
$Topic =$topics->getTopicName();
echo "<br /><h2> ".Statistic_02." ".stripslashes($Topic)."<br /></h2>";
getFlopTenCorrects($questions);
}
break;
}
case 'sortByTopic': { // Fragen nach Thema sortieren
$topics->getTopic();
$topicarray=$topics->getTopicArray();
$number=$qu->getNumberOfQuestions($topicarray);
$inactive=$qu->getNumberOfInactiveQuestions($topicarray); //muss noch erstellt werden
$lp=$qu->getLearnpathCount($topicarray);
$topics->showTopicTableStatistic($number,$lp,$inactive);
break;
}
case 'getStatisticQuestions': { // Fragen in Tabelle anzeigen
$topics->setTopicID($t_id);
$topics->setTopic($t_id);
$Topic =$topics->getTopicName();
echo "<br /><h2>".Statistic_03." ".stripslashes($Topic)."<br /></h2>";
$qu->setTopic($t_id);
$ok=$qu->setStatisticQuestions();
if($ok==1)$qu->showStatisticQuestionTable();
break;
}
case 'changeActive':{ // Frage deaktivieren / aktivieren
// Überbrüfung / Wertzuweisung
$q_id=0; if($_GET['q_id'])$q_id=abs(intval($_GET['q_id']));
$qu->setID($q_id);
$qu->changeActive();
$t_id=$_GET['t_id'];
$topics->setTopicID($t_id);
$topics->setTopic($t_id);
$Topic =$topics->getTopicName();
echo "<br /><h2> ".Statistic_03." ".stripslashes($Topic)."<br /></h2>";
$qu->setTopic($t_id);
$ok=$qu->setStatisticQuestions();
if($ok==1)$qu->showStatisticQuestionTable();
break;
}
case 'delQuestion':{ // Frage löschen
// Überbrüfung / Wertzuweisung
$q_id=0; if($_GET['q_id'])$q_id=abs(intval($_GET['q_id']));
$topic_id=$qu->searchTopic($q_id);
$qu->delQuestion($q_id);
$answer->delAnswers ($q_id);
echo "<meta http-equiv='refresh' content='0; url=?site=statistic&action=getStatisticQuestions&t_id=$t_id' />";
break;
}
case 'userInfo':{
getUserInfo();
break;
}
case 'showStatisticTest':{
// Überbrüfung / Wertzuweisung
$t_id=0; if($_GET['t_id'])$t_id=abs(intval($_GET['t_id']));
getStatisticTest($t_id);
break;
}
}
}
else echo '<h5 class="centered">'.Global_01.'</h5>';