55 $this->
ctrl = $DIC[
'ilCtrl'];
56 $this->tpl = $DIC[
'tpl'];
57 $this->
lng = $DIC[
'lng'];
58 $this->
user = $DIC[
'ilUser'];
59 $this->uiFactory = $DIC->ui()->factory();
60 $this->uiRenderer = $DIC->ui()->renderer();
62 $this->
object = $testOBJ;
71 if (!$this->
object->getHighscoreEnabled()) {
72 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
73 $this->
ctrl->redirectByClass(ilObjTestGUI::class);
76 $this->
ctrl->saveParameter($this,
'active_id');
78 $cmd = $this->
ctrl->getCmd();
88 $this->tpl->setContent(implode(
'', [
100 $title = $this->
lng->txt(
'tst_median_mark_panel');
103 $activeId = $this->
object->getActiveIdOfUser($this->
user->getId());
104 $data = $this->
object->getCompleteEvaluationData();
105 $median =
$data->getStatistics()->getStatistics()->median();
106 $pct =
$data->getParticipant($activeId)->getMaxpoints() ? ($median /
$data->getParticipant($activeId)->getMaxpoints()) * 100.0 : 0;
107 $mark = $this->
object->mark_schema->getMatchingMark($pct);
108 $content = $mark->getShortName();
110 $panel = $this->uiFactory->panel()->standard(
112 $this->uiFactory->legacy($content)
115 return $this->uiRenderer->render(
$panel);
123 $title = $this->
lng->txt(
'toplist_by_score');
127 $topData = $this->toplist->getGeneralToplistByPercentage(
128 $this->
object->getRefId(),
133 $table->setData($topData);
134 $table->setTitle($title);
136 $html .= $table->getHTML();
140 $ownData = $this->toplist->getUserToplistByPercentage(
141 $this->
object->getRefId(),
146 $table->setData($ownData);
148 $table->setTitle($title);
151 $html .= $table->getHTML();
162 $title = $this->
lng->txt(
'toplist_by_time');
166 $topData = $this->toplist->getGeneralToplistByWorkingtime(
167 $this->
object->getRefId(),
172 $table->setData($topData);
173 $table->setTitle($title);
175 $html .= $table->getHTML();
179 $ownData = $this->toplist->getUserToplistByWorkingtime(
180 $this->
object->getRefId(),
185 $table->setData($ownData);
188 $table->setTitle($title);
191 $html .= $table->getHTML();
212 return $this->
object->getHighscoreTopTable();
220 return $this->
object->getHighscoreOwnTable();
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isOwnRankingTableRequired()
__construct(ilObjTest $testOBJ)
if(isset($_FILES['img_file']) &&is_array($_FILES['img_file'])) $panel
renderResultsToplistByScore()
renderResultsToplistByTime()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
isTopTenRankingTableRequired()