Scoring class for tests.
More...
Scoring class for tests.
- Author
- Maximilian Becker mbeck.nosp@m.er@d.nosp@m.ataba.nosp@m.y.de
- Version
- $Id$
Definition at line 14 of file class.ilTestToplistGUI.php.
◆ __construct()
◆ manageTabs()
Definition at line 64 of file class.ilTestToplistGUI.php.
65 {
67
69 $lng->txt(
'tst_results_back_introduction'),
71 );
72
74 'toplist_by_score',
75 $lng->txt(
'toplist_by_score'),
77 );
78
80 'toplist_by_time',
81 $lng->txt(
'toplist_by_time'),
83 );
84
86 }
getLinkTargetByClass( $a_class, $a_cmd="", $a_anchor="", $a_asynch=false, $xml_style=true)
Get link target for command using gui class name.
getLinkTarget( $a_gui_obj, $a_cmd="", $a_anchor="", $a_asynch=false, $xml_style=true)
Get link target for command using gui object.
clearTargets()
clear all targets
setTabActive($a_id)
DEPRECATED.
setBackTarget($a_title, $a_target, $a_frame="")
back target for upper context
addTab($a_id, $a_text, $a_link, $a_frame="")
Add a Tab.
References $lng, ilTabsGUI\addTab(), ilTabsGUI\clearTargets(), ilCtrl\getLinkTarget(), ilCtrl\getLinkTargetByClass(), ilTabsGUI\setBackTarget(), and ilTabsGUI\setTabActive().
◆ prepareTable()
ilTestToplistGUI::prepareTable |
( |
ilTable2GUI |
$table_gui | ) |
|
|
private |
- Parameters
-
Definition at line 163 of file class.ilTestToplistGUI.php.
164 {
166
169 if ($this->object->getHighscoreAchievedTS()) {
171 }
172
173 if ($this->object->getHighscoreScore()) {
175 }
176
177 if ($this->object->getHighscorePercentage()) {
179 }
180
181 if ($this->object->getHighscoreHints()) {
183 }
184
185 if ($this->object->getHighscoreWTime()) {
187 }
190 }
setEnableNumInfo($a_val)
Set enable num info.
setLimit($a_limit=0, $a_default_limit=0)
set max.
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
References $lng, ilTable2GUI\addColumn(), ilTable2GUI\setEnableNumInfo(), and ilTable2GUI\setLimit().
Referenced by showResultsToplistByScore(), and showResultsToplistByTime().
◆ showResultsToplistByScore()
ilTestToplistGUI::showResultsToplistByScore |
( |
| ) |
|
Definition at line 88 of file class.ilTestToplistGUI.php.
89 {
91
93
97
98 $data = $this->toplist->getGeneralToplistByPercentage(
$_GET[
'ref_id'],
$ilUser->getId());
99
100 $table_gui->setRowTemplate('tpl.toplist_tbl_rows.html', 'Modules/Test');
101 $table_gui->setData(
$data);
102 $table_gui->setTitle(
sprintf(
$lng->txt(
'toplist_top_n_results'), $this->object->getHighscoreTopNum()));
103
104 $html .= $table_gui->getHTML();
105 }
106
109
111
112 $data2 = $this->toplist->getUserToplistByPercentage(
$_GET[
'ref_id'],
$ilUser->getID());
113
114 $table_gui2->setRowTemplate('tpl.toplist_tbl_rows.html', 'Modules/Test');
115 $table_gui2->setData($data2);
116 $table_gui2->setTitle(
$lng->txt(
'toplist_your_result'));
117
118 $html .= $table_gui2->getHTML();
119 }
120
122 }
sprintf('%.4f', $callTime)
const HIGHSCORE_SHOW_OWN_TABLE
const HIGHSCORE_SHOW_TOP_TABLE
prepareTable(ilTable2GUI $table_gui)
References $_GET, $data, $html, $ilUser, $lng, $tpl, ilObjTest\HIGHSCORE_SHOW_OWN_TABLE, ilObjTest\HIGHSCORE_SHOW_TOP_TABLE, prepareTable(), and sprintf.
◆ showResultsToplistByTime()
ilTestToplistGUI::showResultsToplistByTime |
( |
| ) |
|
Definition at line 124 of file class.ilTestToplistGUI.php.
125 {
127
129
133
134 $data = $this->toplist->getGeneralToplistByWorkingtime(
$_GET[
'ref_id'],
$ilUser->getId());
135
136 $table_gui->setRowTemplate('tpl.toplist_tbl_rows.html', 'Modules/Test');
137 $table_gui->setData(
$data);
138 $table_gui->setTitle(
sprintf(
$lng->txt(
'toplist_top_n_results'), $this->object->getHighscoreTopNum()));
139
140 $html .= $table_gui->getHTML();
141 }
142
145
147
148 $data2 = $this->toplist->getUserToplistByWorkingtime(
$_GET[
'ref_id'],
$ilUser->getID());
149
150 $table_gui2->setRowTemplate('tpl.toplist_tbl_rows.html', 'Modules/Test');
151 $table_gui2->setData($data2);
152 $table_gui2->setTitle(
$lng->txt(
'toplist_your_result'));
153
154 $html .= $table_gui2->getHTML();
155 }
156
158 }
References $_GET, $data, $html, $ilUser, $lng, $tpl, ilObjTest\HIGHSCORE_SHOW_OWN_TABLE, ilObjTest\HIGHSCORE_SHOW_TOP_TABLE, prepareTable(), and sprintf.
◆ $object
ilTestToplistGUI::$object |
|
protected |
◆ $toplist
ilTestToplistGUI::$toplist |
|
protected |
The documentation for this class was generated from the following file: