49 $this->
object->loadFromDb(
$id);
63 $hasErrors = (!$always) ? $this->
editQuestion(
true) :
false;
74 bool $checkonly =
false,
75 ?
bool $is_save_cmd =
null 80 $this->editForm = $form;
82 $form->setFormAction($this->
ctrl->getFormAction($this));
84 $form->setMultipart(
false);
85 $form->setTableWidth(
"100%");
86 $form->setId(
"orderinghorizontal");
99 $form->setValuesByPost();
100 $errors = !$form->checkInput();
101 $form->setValuesByPost();
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 125 $user_solutions = [];
126 if (($active_id > 0) && (!$show_correct_solution)) {
127 $user_solutions = $this->
object->getSolutionValues($active_id, $pass);
138 $show_correct_solution,
139 $show_manual_scoring,
142 $show_inline_feedback,
147 mixed $user_solutions,
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,
160 $template =
new ilTemplate(
"tpl.il_as_qpl_orderinghorizontal_output_solution.html",
true,
true,
"components/ILIAS/TestQuestionPool");
163 if (count($user_solutions) && strlen($user_solutions[0][
"value1"])) {
164 $elements = explode(
"{::}", $user_solutions[0][
"value1"]);
167 if (!count($elements)) {
168 $elements = $show_correct_solution ? $this->
object->getOrderingElements() : $this->
object->getRandomOrderingElements();
171 foreach ($elements as
$id => $element) {
172 $template->setCurrentBlock(
"element");
173 $template->setVariable(
"ELEMENT_ID",
"sol_e_" . $this->
object->getId() .
"_$id");
175 $template->parseCurrentBlock();
178 if (($active_id > 0) && (!$show_correct_solution)) {
180 $reached_points = $this->
object->getReachedPoints($active_id, $pass);
182 $reached_points = $this->
object->calculateReachedPoints($active_id, $pass);
184 if ($graphical_output) {
186 if ($reached_points == $this->
object->getMaximumPoints()) {
188 } elseif ($reached_points > 0) {
191 $template->setCurrentBlock(
"icon_ok");
192 $template->setVariable(
"ICON_OK", $correctness_icon);
193 $template->parseCurrentBlock();
196 $reached_points = $this->
object->getPoints();
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));
203 if ($show_question_text ==
true) {
204 $template->setVariable(
"QUESTIONTEXT", $this->
object->getQuestionForHTMLOutput());
207 if ($this->
object->getTextSize() >= 10) {
208 $template->setVariable(
"STYLE",
" style=\"font-size: " . $this->
object->getTextSize() .
"%;\"");
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);
217 if ($show_feedback) {
220 $feedback .= strlen($fb) ? $fb :
'';
223 if (strlen($feedback)) {
229 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
232 $solutionoutput = $solutiontemplate->get();
233 if (!$show_question_only) {
237 return $solutionoutput;
242 bool $show_question_only =
false,
243 bool $show_inline_feedback =
false 245 $template =
new ilTemplate(
'tpl.il_as_qpl_orderinghorizontal_output.html',
true,
true,
'components/ILIAS/TestQuestionPool');
250 $elements = $this->
object->splitAndTrimOrderElementText(
252 $this->
object->getAnswerSeparator()
255 $elements = $this->
object->getRandomOrderingElements();
258 foreach ($elements as
$id => $element) {
259 $template->setCurrentBlock(
'element');
260 $template->setVariable(
'ELEMENT_ID',
"e_{$this->object->getId()}_{$id}");
262 $template->parseCurrentBlock();
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() .
'%;"');
269 $template->setVariable(
'QUESTIONTEXT', $this->
object->getQuestionForHTMLOutput());
270 if ($show_question_only) {
271 return $template->get();
279 bool $is_question_postponed =
false,
280 array|
bool $user_post_solutions =
false,
281 bool $show_specific_inline_feedback =
false 283 $template =
new ilTemplate(
'tpl.il_as_qpl_orderinghorizontal_output.html',
true,
true,
'components/ILIAS/TestQuestionPool');
286 $elements = $this->
object->getRandomOrderingElements();
288 $solutions = $this->
object->getTestOutputSolutions($active_id, $pass);
289 if (count($solutions) == 1) {
290 $elements = explode(
'{::}', $solutions[0][
'value1']);
293 if (!is_array($solutions) || count($solutions) == 0) {
298 foreach ($elements as
$id => $element) {
299 $template->setCurrentBlock(
'element');
300 $template->setVariable(
'ELEMENT_ID',
"e_{$this->object->getId()}_{$id}");
302 $template->parseCurrentBlock();
304 $template->setVariable(
'QUESTION_ID', $this->
object->getId());
305 if ($this->
object->getTextSize() >= 10) {
306 $template->setVariable(
'STYLE',
' style="font-size: ' . $this->
object->getTextSize() .
'%;"');
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());
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'));
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);
352 $textsize->setInfo($this->
lng->txt(
"textsize_info"));
353 $textsize->setSize(6);
354 $textsize->setMinValue(10);
355 $textsize->setRequired(
false);
364 $points->setValue(
"1");
366 $points->setValue($this->
object->getPoints());
368 $points->setRequired(
true);
370 $points->setMinValue(0.0);
371 $points->setMinvalueShouldBeGreater(
true);
380 foreach ($relevantAnswers as $ans) {
381 $md5 = md5($ans[
'value1']);
383 if (!isset($answers[$md5])) {
384 $answer = str_replace(
385 $this->
object->getAnswerSeparator(),
386 ' - ',
391 'answer' => $answer,
'frequency' => 0
395 $answers[$md5][
'frequency']++;
407 $points->setValue($this->
object->getPoints());
408 $points->setRequired(
true);
410 $points->setMinValue(0.0);
411 $points->setMinvalueShouldBeGreater(
true);
417 $this->
object->setPoints((
float) str_replace(
',',
'.', $form->
getInput(
'points')));
422 $this->tpl->addJavascript(
'assets/js/orderinghorizontal.js');
423 $this->tpl->addOnLoadCode(
424 "il.test.orderinghorizontal.init(document.querySelector('#horizontal_{$this->object->getId()}'));" isTestPresentationContext()
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...
const CSS_CLASS_FEEDBACK_CORRECT
populateTaxonomyFormSection(ilPropertyFormGUI $form)
addQuestionFormCommandButtons(ilPropertyFormGUI $form)
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form)
setValue(string $a_value)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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)
writeQuestionGenericPostData()
getPreview(bool $show_question_only=false, bool $show_inline_feedback=false)
const CSS_CLASS_FEEDBACK_WRONG
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from the request and applies them to the data object...
saveTaxonomyAssignments()
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
__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...
getSpecificFeedbackOutput(array $userSolution)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static clear(string $a_var)
static set(string $a_var, $a_val)
Set a value.
writePostData(bool $always=false)
{}
renderEditForm(ilPropertyFormGUI $form)
getGenericFeedbackOutput(int $active_id, ?int $pass)