ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTestPassOverviewTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
28 {
31  protected bool $resultPresentationEnabled = false;
32 
33  protected bool $pdfPresentationEnabled = false;
34 
35  protected bool $objectiveOrientedPresentationEnabled = false;
36 
37  protected ?int $activeId = null;
38 
39  protected string $passDetailsCommand = '';
40 
41  protected string $passDeletionCommand = '';
42 
43  public function __construct(ilTestEvaluationGUI $parent, string $cmd)
44  {
45  $this->setId('tst_pass_overview_' . $parent->getObject()->getId());
46  $this->setDefaultOrderField('pass');
47  $this->setDefaultOrderDirection('ASC');
48 
49  parent::__construct($parent, $cmd);
50 
51  // Don't set any limit because of print/pdf views. Furthermore, this view is part of different summary views, and no cmd ist passed to he calling method.
52  $this->setLimit(PHP_INT_MAX);
53  $this->disable('sort');
54 
55  global $DIC;
56  $this->ui_factory = $DIC->ui()->factory();
57  $this->ui_renderer = $DIC->ui()->renderer();
58 
59  $this->setRowTemplate('tpl.il_as_tst_pass_overview_row.html', 'components/ILIAS/Test');
60  }
61 
62  public function init(): void
63  {
64  $this->ctrl->setParameter($this->parent_obj, 'active_id', $this->getActiveId());
65 
66  $this->initColumns();
67 
68  if ($this->isPdfPresentationEnabled()) {
69  $this->disable('linkbar');
70  $this->disable('numinfo');
71  $this->disable('numinfo_header');
72  $this->disable('hits');
73  }
74  }
75 
76  public function numericOrdering(string $a_field): bool
77  {
78  switch ($a_field) {
79  case 'pass':
80  case 'date':
81  case 'percentage':
82  return true;
83  }
84 
85  return false;
86  }
87 
88  public function fillRow(array $a_set): void
89  {
90  if (array_key_exists('percentage', $a_set)) {
91  $a_set['percentage'] = sprintf('%.2f', $a_set['percentage']) . '%';
92  }
93 
94  // fill columns
95 
97  if ($this->isResultPresentationEnabled()) {
98  $this->tpl->setVariable('VAL_SCORED', $a_set['scored'] ? '&otimes;' : '');
99  }
100 
101  $this->tpl->setVariable('VAL_PASS', $this->getPassNumberPresentation($a_set['pass']));
102  }
103 
104  $this->tpl->setVariable('VAL_DATE', $this->formatDate($a_set['date']));
105 
107  $this->tpl->setVariable('VAL_LO_OBJECTIVES', $a_set['objectives']);
108 
109  $this->tpl->setVariable('VAL_LO_TRY', sprintf(
110  $this->lng->txt('tst_res_lo_try_n'),
111  $this->getPassNumberPresentation($a_set['pass'])
112  ));
113  }
114 
115  if ($this->isResultPresentationEnabled()) {
116  $this->tpl->setVariable('VAL_ANSWERED', $this->buildWorkedThroughQuestionsString(
117  $a_set['num_workedthrough_questions'],
118  $a_set['num_questions_total']
119  ));
120 
121  if ($this->getParentObject()->getObject()->isOfferingQuestionHintsEnabled()) {
122  $this->tpl->setVariable('VAL_HINTS', $a_set['hints']);
123  }
124 
125  $this->tpl->setVariable('VAL_REACHED', $this->buildReachedPointsString(
126  $a_set['reached_points'],
127  $a_set['max_points']
128  ));
129 
130  $this->tpl->setVariable('VAL_PERCENTAGE', $a_set['percentage']);
131  }
132 
133  if (!$this->isPdfPresentationEnabled()) {
134  $actions = $this->getRequiredActions($a_set['scored']);
135  $this->tpl->setVariable('VAL_ACTIONS', $this->buildActionsHtml($actions, $a_set['pass']));
136  }
137  }
138 
139  protected function initColumns(): void
140  {
142  $this->addColumn($this->lng->txt('scored_pass'), '', '150');
143  }
144 
146  $this->addColumn($this->lng->txt('pass'), '', '1%');
147  }
148 
149  $this->addColumn($this->lng->txt('date'));
150 
152  $this->addColumn($this->lng->txt('tst_res_lo_objectives_header'), '');
153  $this->addColumn($this->lng->txt('tst_res_lo_try_header'), '');
154  }
155 
156  if ($this->isResultPresentationEnabled()) {
157  $this->addColumn($this->lng->txt('tst_answered_questions'));
158  if ($this->getParentObject()->getObject()->isOfferingQuestionHintsEnabled()) {
159  $this->addColumn($this->lng->txt('tst_question_hints_requested_hint_count_header'));
160  }
161  $this->addColumn($this->lng->txt('tst_reached_points'));
162  $this->addColumn($this->lng->txt('tst_percent_solved'));
163  }
164 
165  // actions
166  if (!$this->isPdfPresentationEnabled()) {
167  $this->addColumn($this->lng->txt('actions'), '', '10%');
168  }
169  }
170 
171  public function isResultPresentationEnabled(): bool
172  {
174  }
175 
176  public function setResultPresentationEnabled(bool $resultPresentationEnabled): void
177  {
178  $this->resultPresentationEnabled = $resultPresentationEnabled;
179  }
180 
181  public function isPdfPresentationEnabled(): bool
182  {
184  }
185 
186  public function setPdfPresentationEnabled(bool $pdfPresentationEnabled): void
187  {
188  $this->pdfPresentationEnabled = $pdfPresentationEnabled;
189  }
190 
192  {
194  }
195 
196  public function setObjectiveOrientedPresentationEnabled(bool $objectiveOrientedPresentationEnabled): void
197  {
198  $this->objectiveOrientedPresentationEnabled = $objectiveOrientedPresentationEnabled;
199  }
200 
201  public function getActiveId(): ?int
202  {
203  return $this->activeId;
204  }
205 
206  public function setActiveId($activeId): void
207  {
208  $this->activeId = (int) $activeId;
209  }
210 
211  public function getPassDetailsCommand(): string
212  {
214  }
215 
216  public function setPassDetailsCommand(string $passDetailsCommand): void
217  {
218  $this->passDetailsCommand = $passDetailsCommand;
219  }
220 
221  public function getPassDeletionCommand(): string
222  {
224  }
225 
226  public function setPassDeletionCommand(string $passDeletionCommand): void
227  {
228  $this->passDeletionCommand = $passDeletionCommand;
229  }
230 
231  private function formatDate($date): string
232  {
237  return $date;
238  }
239 
240  private function buildWorkedThroughQuestionsString($numQuestionsWorkedThrough, $numQuestionsTotal): string
241  {
242  return "{$numQuestionsWorkedThrough} {$this->lng->txt('of')} {$numQuestionsTotal}";
243  }
244 
245  private function buildReachedPointsString($reachedPoints, $maxPoints): string
246  {
247  return "{$reachedPoints} {$this->lng->txt('of')} {$maxPoints}";
248  }
249 
250  private function getRequiredActions(?bool $isScoredPass): array
251  {
252  $actions = [];
253 
254  if ($this->getPassDetailsCommand()) {
255  $actions[$this->getPassDetailsCommand()] = $this->lng->txt('tst_pass_details');
256  }
257 
258  if (!is_null($isScoredPass) && !$isScoredPass && $this->getPassDeletionCommand()) {
259  $actions[$this->getPassDeletionCommand()] = $this->lng->txt('delete');
260  }
261 
262  return $actions;
263  }
264 
265  private function buildActionsHtml($actions, $pass): string
266  {
267  if (!count($actions)) {
268  return '';
269  }
270 
271  $this->ctrl->setParameter($this->parent_obj, 'pass', $pass);
272  $action_links = [];
273  if (count($actions) > 1) {
274  foreach ($actions as $cmd => $label) {
275  $action_links[] = $this->ui_factory->link()->standard($label, $this->ctrl->getLinkTarget($this->parent_obj, $cmd));
276  }
277  $dropdown = $this->ui_factory->dropdown()->standard($action_links)->withLabel($this->lng->txt('actions'));
278  $html = $this->ui_renderer->render($dropdown);
279  } else {
280  $cmd = key($actions);
281  $label = current($actions);
282 
283  $href = $this->ctrl->getLinkTarget($this->parent_obj, $cmd);
284  $html = '<a href="' . $href . '">' . $label . '</a>';
285  }
286 
287  $this->ctrl->setParameter($this->parent_obj, 'pass', '');
288 
289  return $html;
290  }
291 
292  protected function getPassNumberPresentation($pass): int
293  {
294  return $pass + 1;
295  }
296 }
static array static setUseRelativeDates(bool $a_status)
set use relative dates
const IL_CAL_UNIX
buildReachedPointsString($reachedPoints, $maxPoints)
setId(string $a_val)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setDefaultOrderField(string $a_defaultorderfield)
setPdfPresentationEnabled(bool $pdfPresentationEnabled)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
Output class for assessment test evaluation.
setDefaultOrderDirection(string $a_defaultorderdirection)
setPassDetailsCommand(string $passDetailsCommand)
setResultPresentationEnabled(bool $resultPresentationEnabled)
Class ilTestPassOverviewTableGUI.
__construct(ilTestEvaluationGUI $parent, string $cmd)
setObjectiveOrientedPresentationEnabled(bool $objectiveOrientedPresentationEnabled)
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
buildWorkedThroughQuestionsString($numQuestionsWorkedThrough, $numQuestionsTotal)
setPassDeletionCommand(string $passDeletionCommand)