ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.assOrderingHorizontalGUI.php
Go to the documentation of this file.
1 <?php
2 
34 {
43  public function __construct($id = -1)
44  {
46  $this->object = new assOrderingHorizontal();
47  $this->setErrorMessage($this->lng->txt("msg_form_save_error"));
48  if ($id >= 0) {
49  $this->object->loadFromDb($id);
50  }
51  }
52 
53  public function getCommand($cmd)
54  {
55  return $cmd;
56  }
57 
61  protected function writePostData(bool $always = false): int
62  {
63  $hasErrors = (!$always) ? $this->editQuestion(true) : false;
64  if (!$hasErrors) {
67  $this->saveTaxonomyAssignments();
68  return 0;
69  }
70  return 1;
71  }
72 
73  public function editQuestion(
74  bool $checkonly = false,
75  ?bool $is_save_cmd = null
76  ): bool {
77  $save = $is_save_cmd ?? $this->isSaveCommand();
78 
79  $form = new ilPropertyFormGUI();
80  $this->editForm = $form;
81 
82  $form->setFormAction($this->ctrl->getFormAction($this));
83  $form->setTitle($this->outQuestionType());
84  $form->setMultipart(false);
85  $form->setTableWidth("100%");
86  $form->setId("orderinghorizontal");
87 
88  $this->addBasicQuestionFormProperties($form);
90 
91 
92  $this->populateTaxonomyFormSection($form);
93 
94  $this->addQuestionFormCommandButtons($form);
95 
96  $errors = false;
97 
98  if ($save) {
99  $form->setValuesByPost();
100  $errors = !$form->checkInput();
101  $form->setValuesByPost(); // again, because checkInput now performs the whole stripSlashes handling and we need this if we don't want to have duplication of backslashes
102  if ($errors) {
103  $checkonly = false;
104  }
105  }
106 
107  if (!$checkonly) {
108  $this->renderEditForm($form);
109  }
110  return $errors;
111  }
112 
113  public function getSolutionOutput(
114  int $active_id,
115  ?int $pass = null,
116  bool $graphical_output = false,
117  bool $result_output = false,
118  bool $show_question_only = true,
119  bool $show_feedback = false,
120  bool $show_correct_solution = false,
121  bool $show_manual_scoring = false,
122  bool $show_question_text = true,
123  bool $show_inline_feedback = true
124  ): string {
125  $user_solutions = [];
126  if (($active_id > 0) && (!$show_correct_solution)) {
127  $user_solutions = $this->object->getSolutionValues($active_id, $pass);
128  }
129 
130  return $this->renderSolutionOutput(
131  $user_solutions,
132  $active_id,
133  $pass,
134  $graphical_output,
135  $result_output,
136  $show_question_only,
137  $show_feedback,
138  $show_correct_solution,
139  $show_manual_scoring,
140  $show_question_text,
141  false,
142  $show_inline_feedback,
143  );
144  }
145 
146  public function renderSolutionOutput(
147  mixed $user_solutions,
148  int $active_id,
149  ?int $pass,
150  bool $graphical_output = false,
151  bool $result_output = false,
152  bool $show_question_only = true,
153  bool $show_feedback = false,
154  bool $show_correct_solution = false,
155  bool $show_manual_scoring = false,
156  bool $show_question_text = true,
157  bool $show_autosave_title = false,
158  bool $show_inline_feedback = false,
159  ): ?string {
160  $template = new ilTemplate("tpl.il_as_qpl_orderinghorizontal_output_solution.html", true, true, "components/ILIAS/TestQuestionPool");
161 
162  $elements = [];
163  if (count($user_solutions) && strlen($user_solutions[0]["value1"])) {
164  $elements = explode("{::}", $user_solutions[0]["value1"]);
165  }
166 
167  if (!count($elements)) {
168  $elements = $show_correct_solution ? $this->object->getOrderingElements() : $this->object->getRandomOrderingElements();
169  }
170 
171  foreach ($elements as $id => $element) {
172  $template->setCurrentBlock("element");
173  $template->setVariable("ELEMENT_ID", "sol_e_" . $this->object->getId() . "_$id");
174  $template->setVariable("ELEMENT_VALUE", ilLegacyFormElementsUtil::prepareFormOutput($element));
175  $template->parseCurrentBlock();
176  }
177 
178  if (($active_id > 0) && (!$show_correct_solution)) {
179  if ($this->object->getStep() === null) {
180  $reached_points = $this->object->getReachedPoints($active_id, $pass);
181  } else {
182  $reached_points = $this->object->calculateReachedPoints($active_id, $pass);
183  }
184  if ($graphical_output) {
185  $correctness_icon = $this->generateCorrectnessIconsForCorrectness(self::CORRECTNESS_NOT_OK);
186  if ($reached_points == $this->object->getMaximumPoints()) {
187  $correctness_icon = $this->generateCorrectnessIconsForCorrectness(self::CORRECTNESS_OK);
188  } elseif ($reached_points > 0) {
189  $correctness_icon = $this->generateCorrectnessIconsForCorrectness(self::CORRECTNESS_MOSTLY_OK);
190  }
191  $template->setCurrentBlock("icon_ok");
192  $template->setVariable("ICON_OK", $correctness_icon);
193  $template->parseCurrentBlock();
194  }
195  } else {
196  $reached_points = $this->object->getPoints();
197  }
198 
199  if ($result_output) {
200  $resulttext = ($reached_points == 1) ? "(%s " . $this->lng->txt("point") . ")" : "(%s " . $this->lng->txt("points") . ")";
201  $template->setVariable("RESULT_OUTPUT", sprintf($resulttext, $reached_points));
202  }
203  if ($show_question_text == true) {
204  $template->setVariable("QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
205  }
206  // $template->setVariable("SOLUTION_TEXT", ilUtil::prepareFormOutput($solutionvalue));
207  if ($this->object->getTextSize() >= 10) {
208  $template->setVariable("STYLE", " style=\"font-size: " . $this->object->getTextSize() . "%;\"");
209  }
210 
211  $questionoutput = $template->get();
212  $solutiontemplate = new ilTemplate("tpl.il_as_tst_solution_output.html", true, true, "components/ILIAS/TestQuestionPool");
213  $solutiontemplate->setVariable("SOLUTION_OUTPUT", $questionoutput);
214 
215 
216  $feedback = '';
217  if ($show_feedback) {
218  if (!$this->isTestPresentationContext()) {
219  $fb = $this->getGenericFeedbackOutput((int) $active_id, $pass);
220  $feedback .= strlen($fb) ? $fb : '';
221  }
222  }
223  if (strlen($feedback)) {
224  $cssClass = (
225  $this->hasCorrectSolution($active_id, $pass) ?
227  );
228 
229  $solutiontemplate->setVariable("ILC_FB_CSS_CLASS", $cssClass);
230  $solutiontemplate->setVariable("FEEDBACK", ilLegacyFormElementsUtil::prepareTextareaOutput($feedback, true));
231  }
232  $solutionoutput = $solutiontemplate->get();
233  if (!$show_question_only) {
234  // get page object output
235  $solutionoutput = $this->getILIASPage($solutionoutput);
236  }
237  return $solutionoutput;
238  }
239 
240 
241  public function getPreview(
242  bool $show_question_only = false,
243  bool $show_inline_feedback = false
244  ): string {
245  $template = new ilTemplate('tpl.il_as_qpl_orderinghorizontal_output.html', true, true, 'components/ILIAS/TestQuestionPool');
246  $this->initializePlayerJS();
247 
248  if ($this->getPreviewSession() !== null
249  && $this->getPreviewSession()->getParticipantsSolution() !== null) {
250  $elements = $this->object->splitAndTrimOrderElementText(
251  (string) $this->getPreviewSession()->getParticipantsSolution(),
252  $this->object->getAnswerSeparator()
253  );
254  } else {
255  $elements = $this->object->getRandomOrderingElements();
256  }
257 
258  foreach ($elements as $id => $element) {
259  $template->setCurrentBlock('element');
260  $template->setVariable('ELEMENT_ID', "e_{$this->object->getId()}_{$id}");
261  $template->setVariable('ELEMENT_VALUE', ilLegacyFormElementsUtil::prepareFormOutput($element));
262  $template->parseCurrentBlock();
263  }
264  $template->setVariable('QUESTION_ID', $this->object->getId());
265  $template->setVariable('VALUE_ORDERRESULT', ' value="' . join('{::}', $elements) . '"');
266  if ($this->object->getTextSize() >= 10) {
267  $template->setVariable('STYLE', ' style="font-size: ' . $this->object->getTextSize() . '%;"');
268  }
269  $template->setVariable('QUESTIONTEXT', $this->object->getQuestionForHTMLOutput());
270  if ($show_question_only) {
271  return $template->get();
272  }
273  return $this->getILIASPage($template->get());
274  }
275 
276  public function getTestOutput(
277  int $active_id,
278  int $pass,
279  bool $is_question_postponed = false,
280  array|bool $user_post_solutions = false,
281  bool $show_specific_inline_feedback = false
282  ): string {
283  $template = new ilTemplate('tpl.il_as_qpl_orderinghorizontal_output.html', true, true, 'components/ILIAS/TestQuestionPool');
284  $this->initializePlayerJS();
285 
286  $elements = $this->object->getRandomOrderingElements();
287  if ($active_id) {
288  $solutions = $this->object->getTestOutputSolutions($active_id, $pass);
289  if (count($solutions) == 1) {
290  $elements = explode('{::}', $solutions[0]['value1']);
291  }
292  }
293  if (!is_array($solutions) || count($solutions) == 0) {
294  ilSession::set('qst_ordering_horizontal_elements', $elements);
295  } else {
296  ilSession::clear('qst_ordering_horizontal_elements');
297  }
298  foreach ($elements as $id => $element) {
299  $template->setCurrentBlock('element');
300  $template->setVariable('ELEMENT_ID', "e_{$this->object->getId()}_{$id}");
301  $template->setVariable('ELEMENT_VALUE', ilLegacyFormElementsUtil::prepareFormOutput($element));
302  $template->parseCurrentBlock();
303  }
304  $template->setVariable('QUESTION_ID', $this->object->getId());
305  if ($this->object->getTextSize() >= 10) {
306  $template->setVariable('STYLE', ' style="font-size: ' . $this->object->getTextSize() . '%;"');
307  }
308  $template->setVariable('VALUE_ORDERRESULT', ' value="' . join('{::}', $elements) . '"');
309  $template->setVariable('QUESTIONTEXT', $this->object->getQuestionForHTMLOutput());
310  return $this->outQuestionPage("", $is_question_postponed, $active_id, $template->get());
311  }
312 
313  public function getSpecificFeedbackOutput(array $userSolution): string
314  {
315  return '';
316  }
317 
319  {
320  $this->object->setTextSize($this->request_data_collector->float('textsize'));
321  $this->object->setOrderText($this->request_data_collector->raw('ordertext'));
322  $this->object->setPoints($this->request_data_collector->float('points'));
323  }
324 
335  {
336  return [];
337  }
338 
340  {
341  // ordertext
342  $ordertext = new ilTextAreaInputGUI($this->lng->txt("ordertext"), "ordertext");
343  $ordertext->setValue((string) self::prepareTextareaOutput($this->object->getOrderText(), false, true));
344  $ordertext->setRequired(true);
345  $ordertext->setInfo(sprintf($this->lng->txt("ordertext_info"), $this->object->getSeparator()));
346  $ordertext->setRows(10);
347  $ordertext->setCols(80);
348  $form->addItem($ordertext);
349  // textsize
350  $textsize = new ilNumberInputGUI($this->lng->txt("textsize"), "textsize");
351  $textsize->setValue($this->object->getTextSize());
352  $textsize->setInfo($this->lng->txt("textsize_info"));
353  $textsize->setSize(6);
354  $textsize->setMinValue(10);
355  $textsize->setRequired(false);
356  $form->addItem($textsize);
357  // points
358  $points = new ilNumberInputGUI($this->lng->txt("points"), "points");
359 
360  $points->allowDecimals(true);
361  // mbecker: Fix for mantis bug 7866: Predefined values schould make sense.
362  // This implements a default value of "1" for this question type.
363  if ($this->object->getPoints() == null) {
364  $points->setValue("1");
365  } else {
366  $points->setValue($this->object->getPoints());
367  }
368  $points->setRequired(true);
369  $points->setSize(3);
370  $points->setMinValue(0.0);
371  $points->setMinvalueShouldBeGreater(true);
372  $form->addItem($points);
373  return $form;
374  }
375 
376  public function getAnswersFrequency($relevantAnswers, $questionIndex): array
377  {
378  $answers = [];
379 
380  foreach ($relevantAnswers as $ans) {
381  $md5 = md5($ans['value1']);
382 
383  if (!isset($answers[$md5])) {
384  $answer = str_replace(
385  $this->object->getAnswerSeparator(),
386  '&nbsp;&nbsp;-&nbsp;&nbsp;',
387  $ans['value1']
388  );
389 
390  $answers[$md5] = [
391  'answer' => $answer, 'frequency' => 0
392  ];
393  }
394 
395  $answers[$md5]['frequency']++;
396  }
397 
398  return $answers;
399  }
400 
402  {
403  // points
404  $points = new ilNumberInputGUI($this->lng->txt("points"), "points");
405 
406  $points->allowDecimals(true);
407  $points->setValue($this->object->getPoints());
408  $points->setRequired(true);
409  $points->setSize(3);
410  $points->setMinValue(0.0);
411  $points->setMinvalueShouldBeGreater(true);
412  $form->addItem($points);
413  }
414 
416  {
417  $this->object->setPoints((float) str_replace(',', '.', $form->getInput('points')));
418  }
419 
420  private function initializePlayerJS(): void
421  {
422  $this->tpl->addJavascript('assets/js/orderinghorizontal.js');
423  $this->tpl->addOnLoadCode(
424  "il.test.orderinghorizontal.init(document.querySelector('#horizontal_{$this->object->getId()}'));"
425  );
426  }
427 }
hasCorrectSolution($activeId, $passIndex)
Class for horizontal ordering questions.
generateCorrectnessIconsForCorrectness(int $correctness)
editQuestion(bool $checkonly=false, ?bool $is_save_cmd=null)
renderSolutionOutput(mixed $user_solutions, int $active_id, ?int $pass, bool $graphical_output=false, bool $result_output=false, bool $show_question_only=true, bool $show_feedback=false, bool $show_correct_solution=false, bool $show_manual_scoring=false, bool $show_question_text=true, bool $show_autosave_title=false, bool $show_inline_feedback=false,)
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
addBasicQuestionFormProperties(ilPropertyFormGUI $form)
getSolutionOutput(int $active_id, ?int $pass=null, bool $graphical_output=false, bool $result_output=false, bool $show_question_only=true, bool $show_feedback=false, bool $show_correct_solution=false, bool $show_manual_scoring=false, bool $show_question_text=true, bool $show_inline_feedback=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static prepareFormOutput($a_str, bool $a_strip=false)
populateTaxonomyFormSection(ilPropertyFormGUI $form)
getInput(string $a_post_var, bool $ensureValidation=true)
Returns the input of an item, if item provides getInput method and as fallback the value of the HTTP-...
addQuestionFormCommandButtons(ilPropertyFormGUI $form)
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
allowDecimals(bool $a_value)
getTestOutput(int $active_id, int $pass, bool $is_question_postponed=false, array|bool $user_post_solutions=false, bool $show_specific_inline_feedback=false)
setErrorMessage(string $errormessage)
This class represents a number property in a property form.
setValue(?string $a_value)
getPreview(bool $show_question_only=false, bool $show_inline_feedback=false)
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from the request and applies them to the data object...
getILIASPage(string $html="")
Returns the ILIAS Page around a question.
__construct($id=-1)
assOrderingHorizontalGUI constructor
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
getAnswersFrequency($relevantAnswers, $questionIndex)
getAfterParticipationSuppressionQuestionPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static prepareTextareaOutput(string $txt_output, bool $prepare_for_latex_output=false, bool $omitNl2BrWhenTextArea=false)
Prepares a string for a text area output where latex code may be in it If the text is HTML-free...
static clear(string $a_var)
static set(string $a_var, $a_val)
Set a value.
renderEditForm(ilPropertyFormGUI $form)
getGenericFeedbackOutput(int $active_id, ?int $pass)