ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilTestPassDetailsOverviewTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
33 {
34  private bool $answerListAnchorEnabled = false;
35  private bool $showHintCount = false;
36  private bool $showSuggestedSolution = false;
37  private ?int $active_id = null;
38  private bool $is_pdf_generation_request = false;
40  private bool $multipleObjectivesInvolved = true;
41  private bool $passColumnEnabled = false;
42 
43  private array $tableIdsByParentClasses = [
44  'ilTestEvaluationGUI' => 1,
45  'ilTestServiceGUI' => 2
46  ];
47 
51 
52  public function __construct(
53  ilCtrl $ctrl,
54  ilTestServiceGUI $parent,
55  string $cmd
56  ) {
57  $tableId = 0;
58  if (isset($this->tableIdsByParentClasses[get_class($parent)])) {
59  $tableId = $this->tableIdsByParentClasses[get_class($parent)];
60  }
61 
62  $this->ctrl = $ctrl;
63 
64  $this->setId('tst_pdo_' . $tableId);
65  $this->setPrefix('tst_pdo_' . $tableId);
66 
67  $this->setDefaultOrderField('nr');
68  $this->setDefaultOrderDirection('ASC');
69 
70  parent::__construct($parent, $cmd);
71 
72  $this->setFormName('tst_pass_details_overview');
73  $this->setFormAction($this->ctrl->getFormAction($parent, $cmd));
74 
75  // Don't set any limit because of print/pdf views.
76  $this->setLimit(PHP_INT_MAX);
77  $this->setExternalSegmentation(true);
78 
79  $this->disable('linkbar');
80  $this->disable('hits');
81  $this->disable('sort');
82 
83  global $DIC;
84  $this->ui_factory = $DIC->ui()->factory();
85  $this->ui_renderer = $DIC->ui()->renderer();
86 
87  //$this->disable('numinfo');
88  //$this->disable('numinfo_header');
89  // KEEP THIS ENABLED, SINCE NO TABLE FILTER ARE PROVIDED OTHERWISE
90 
91  $this->setRowTemplate('tpl.il_as_tst_pass_details_overview_qst_row.html', 'components/ILIAS/Test');
92  }
93 
94  public function initColumns(): void
95  {
96  if ($this->isPassColumnEnabled()) {
98  $passHeaderLabel = $this->lng->txt("tst_attempt");
99  } else {
100  $passHeaderLabel = $this->lng->txt("pass");
101  }
102 
103  $this->addColumn($passHeaderLabel, 'pass', '');
104  } else {
105  $this->addColumn($this->lng->txt("tst_question_no"), '', '');
106  }
107 
108  $this->addColumn($this->lng->txt("question_id"), '', '');
109  $this->addColumn($this->lng->txt("tst_question_title"), '', '');
110 
112  $this->addColumn($this->lng->txt('tst_res_lo_objectives_header'), '', '');
113  }
114 
115  $this->addColumn($this->lng->txt("tst_maximum_points"), '', '');
116  $this->addColumn($this->lng->txt("tst_reached_points"), '', '');
117 
118  if ($this->getShowHintCount()) {
119  $this->addColumn($this->lng->txt("tst_question_hints_requested_hint_count_header"), '', '');
120  }
121 
122  $this->addColumn($this->lng->txt("tst_percent_solved"), '', '');
123 
124  if ($this->getShowSuggestedSolution()) {
125  $this->addColumn($this->lng->txt("solution_hint"), '', '');
126  }
127 
128  if ($this->areActionListsRequired()) {
129  $this->addColumn($this->lng->txt('actions'), '', '1');
130  }
131  }
132 
133  public function isPdfGenerationRequest(): bool
134  {
136  }
137 
138  public function setIsPdfGenerationRequest(bool $is_print_request): void
139  {
140  $this->is_pdf_generation_request = $is_print_request;
141  }
142 
143  public function fillRow(array $a_set): void
144  {
145  $this->ctrl->setParameter($this->parent_obj, 'evaluation', $a_set['qid']);
146 
147  if (isset($a_set['pass'])) {
148  $this->ctrl->setParameter($this->parent_obj, 'pass', $a_set['pass']);
149  }
150 
151  if ($this->isQuestionTitleLinkPossible()) {
152  $questionTitleLink = $this->getQuestionTitleLink($a_set['qid']);
153 
154  if (strlen($questionTitleLink)) {
155  $this->tpl->setVariable('URL_QUESTION_TITLE', $questionTitleLink);
156 
157  $this->tpl->setCurrentBlock('title_link_end_tag');
158  $this->tpl->touchBlock('title_link_end_tag');
159  $this->tpl->parseCurrentBlock();
160  }
161  }
162 
164  $objectives = $this->questionRelatedObjectivesList->getQuestionRelatedObjectiveTitles($a_set['qid']);
165  $this->tpl->setVariable('VALUE_LO_OBJECTIVES', strlen($objectives) ? $objectives : '&nbsp;');
166  }
167 
168  if ($this->getShowHintCount()) {
169  $this->tpl->setVariable('VALUE_HINT_COUNT', (int) $a_set['requested_hints']);
170  }
171 
172  if ($this->getShowSuggestedSolution()) {
173  $this->tpl->setVariable('SOLUTION_HINT', $a_set['solution']);
174  }
175 
176  if ($this->areActionListsRequired()) {
177  $this->tpl->setVariable('ACTIONS_MENU', $this->getActionList($a_set['qid']));
178  }
179 
180  $this->tpl->setVariable('VALUE_QUESTION_TITLE', $a_set['title']);
181  $this->tpl->setVariable('VALUE_QUESTION_ID', $a_set['qid']);
182 
183  if ($this->isPassColumnEnabled()) {
184  $this->tpl->setVariable('VALUE_QUESTION_PASS', $a_set['pass'] + 1);
185  } else {
186  $this->tpl->setVariable('VALUE_QUESTION_COUNTER', $a_set['nr']);
187  }
188 
189  $this->tpl->setVariable('VALUE_MAX_POINTS', $a_set['max']);
190  $this->tpl->setVariable('VALUE_REACHED_POINTS', $a_set['reached']);
191  $this->tpl->setVariable('VALUE_PERCENT_SOLVED', $a_set['percent']);
192 
193  $this->tpl->setVariable('ROW_ID', $this->getRowId($a_set['qid']));
194  }
195 
196  private function getRowId($questionId): string
197  {
198  return "pass_details_tbl_row_act_{$this->getActiveId()}_qst_{$questionId}";
199  }
200 
201  private function getQuestionTitleLink($questionId): string
202  {
203  if ($this->getAnswerListAnchorEnabled()) {
204  return $this->getAnswerListAnchor($questionId);
205  }
206 
207  return '';
208  }
209 
210  private function isQuestionTitleLinkPossible(): bool
211  {
212  if ($this->getAnswerListAnchorEnabled()) {
213  return true;
214  }
215 
216  return false;
217  }
218 
219  private function areActionListsRequired(): bool
220  {
221  if ($this->isPdfGenerationRequest()) {
222  return false;
223  }
224 
225  if (!$this->getAnswerListAnchorEnabled()) {
226  return false;
227  }
228 
229  return true;
230  }
231 
232  private function getActionList($questionId): string
233  {
234  $actions = [];
235  if ($this->getAnswerListAnchorEnabled()) {
236  $actions[] = $this->ui_factory->link()->standard($this->lng->txt('tst_list_answer_details'), $this->getAnswerListAnchor($questionId));
237  }
238 
239  $dropdown = $this->ui_factory->dropdown()->standard($actions)->withLabel($this->lng->txt('tst_answer_details'));
240  return $this->ui_renderer->render($dropdown);
241  }
242 
243  public function setAnswerListAnchorEnabled($answerListAnchorEnabled): void
244  {
245  $this->answerListAnchorEnabled = $answerListAnchorEnabled;
246  }
247 
248  public function getAnswerListAnchorEnabled(): bool
249  {
251  }
252 
253  private function getAnswerListAnchor($questionId): string
254  {
255  return "#detailed_answer_block_act_{$this->getActiveId()}_qst_{$questionId}";
256  }
257 
258  public function setShowHintCount($showHintCount): void
259  {
260  // Has to be called before column initialization
261  $this->showHintCount = (bool) $showHintCount;
262  }
263 
264  public function getShowHintCount(): bool
265  {
266  return $this->showHintCount;
267  }
268 
269  public function setShowSuggestedSolution(bool $showSuggestedSolution): void
270  {
271  $this->showSuggestedSolution = $showSuggestedSolution;
272  }
273 
274  public function getShowSuggestedSolution(): bool
275  {
277  }
278 
279  public function setActiveId(int $active_id): void
280  {
281  $this->active_id = $active_id;
282  }
283 
284  public function getActiveId(): ?int
285  {
286  return $this->active_id;
287  }
288 
290  {
292  }
293 
294  public function setObjectiveOrientedPresentationEnabled(bool $objective_oriented_presentation_enabled): void
295  {
296  $this->objective_oriented_presentation_enabled = $objective_oriented_presentation_enabled;
297  }
298 
299  public function areMultipleObjectivesInvolved(): bool
300  {
302  }
303 
307  public function setMultipleObjectivesInvolved($multipleObjectivesInvolved)
308  {
309  $this->multipleObjectivesInvolved = $multipleObjectivesInvolved;
310  }
311 
313  {
315  }
316 
317  public function setQuestionRelatedObjectivesList(ilTestQuestionRelatedObjectivesList $questionRelatedObjectivesList): void
318  {
319  $this->questionRelatedObjectivesList = $questionRelatedObjectivesList;
320  }
321 
322  public function isPassColumnEnabled(): bool
323  {
325  }
326 
327  public function setPassColumnEnabled(bool $passColumnEnabled)
328  {
329  $this->passColumnEnabled = $passColumnEnabled;
330  }
331 }
setFormAction(string $a_form_action, bool $a_multipart=false)
setQuestionRelatedObjectivesList(ilTestQuestionRelatedObjectivesList $questionRelatedObjectivesList)
setFormName(string $a_name="")
setId(string $a_val)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$objectives
setDefaultOrderField(string $a_defaultorderfield)
setObjectiveOrientedPresentationEnabled(bool $objective_oriented_presentation_enabled)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
setDefaultOrderDirection(string $a_defaultorderdirection)
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
__construct(ilCtrl $ctrl, ilTestServiceGUI $parent, string $cmd)
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)
Service GUI class for tests.
array ilTestQuestionRelatedObjectivesList $questionRelatedObjectivesList
setExternalSegmentation(bool $a_val)
setPrefix(string $a_prefix)