4 require_once
'./Modules/TestQuestionPool/classes/class.assQuestionGUI.php';
5 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilGuiQuestionScoringAdjustable.php';
6 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
35 include_once
"./Modules/TestQuestionPool/classes/class.assOrderingHorizontal.php";
39 $this->
object->loadFromDb($id);
53 $hasErrors = (!$always) ? $this->
editQuestion(
true) :
false;
55 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
74 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
76 $this->editForm = $form;
78 $form->setFormAction($this->ctrl->getFormAction($this));
80 $form->setMultipart(
false);
81 $form->setTableWidth(
"100%");
82 $form->setId(
"orderinghorizontal");
95 $form->setValuesByPost();
97 $form->setValuesByPost();
104 $this->tpl->setVariable(
"QUESTION_DATA", $form->getHTML());
135 $graphicalOutput =
false,
136 $result_output =
false,
137 $show_question_only =
true,
138 $show_feedback =
false,
139 $show_correct_solution =
false,
140 $show_manual_scoring =
false,
141 $show_question_text =
true 144 $template =
new ilTemplate(
"tpl.il_as_qpl_orderinghorizontal_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
146 if (($active_id > 0) && (!$show_correct_solution)) {
149 if (strlen($solutions[0][
"value1"])) {
150 $elements = explode(
"{::}", $solutions[0][
"value1"]);
153 if (!count($elements)) {
154 $elements = $this->
object->getRandomOrderingElements();
157 foreach ($elements as $id => $element) {
158 $template->setCurrentBlock(
"element");
159 $template->setVariable(
"ELEMENT_ID",
"sol_e_" . $this->object->getId() .
"_$id");
161 $template->parseCurrentBlock();
164 $elements = $this->
object->getOrderingElements();
165 foreach ($elements as $id => $element) {
166 $template->setCurrentBlock(
"element");
167 $template->setVariable(
"ELEMENT_ID",
"sol_e_" . $this->object->getId() .
"_$id");
169 $template->parseCurrentBlock();
173 if (($active_id > 0) && (!$show_correct_solution)) {
174 if ($this->object->getStep() === null) {
175 $reached_points = $this->
object->getReachedPoints($active_id,
$pass);
177 $reached_points = $this->
object->calculateReachedPoints($active_id,
$pass);
179 if ($graphicalOutput) {
181 if ($reached_points == $this->object->getMaximumPoints()) {
182 $template->setCurrentBlock(
"icon_ok");
184 $template->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
185 $template->parseCurrentBlock();
187 $template->setCurrentBlock(
"icon_ok");
188 if ($reached_points > 0) {
190 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_not_correct_but_positive"));
193 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_wrong"));
195 $template->parseCurrentBlock();
199 $reached_points = $this->
object->getPoints();
202 if ($result_output) {
203 $resulttext = ($reached_points == 1) ?
"(%s " . $this->lng->txt(
"point") .
")" :
"(%s " . $this->lng->txt(
"points") .
")";
204 $template->setVariable(
"RESULT_OUTPUT", sprintf($resulttext, $reached_points));
206 if ($show_question_text ==
true) {
207 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($this->object->getQuestion(),
true));
210 if ($this->object->textsize >= 10) {
211 $template->setVariable(
"STYLE",
" style=\"font-size: " . $this->object->textsize .
"%;\"");
214 $questionoutput = $template->get();
215 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
216 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
220 if ($show_feedback) {
223 $feedback .= strlen($fb) ? $fb :
'';
227 $feedback .= strlen($fb) ? $fb :
'';
229 if (strlen($feedback)) {
235 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
236 $solutiontemplate->setVariable(
"FEEDBACK", $this->object->prepareTextareaOutput($feedback,
true));
238 $solutionoutput = $solutiontemplate->get();
239 if (!$show_question_only) {
243 return $solutionoutput;
246 public function getPreview($show_question_only =
false, $showInlineFeedback =
false)
250 $elements = $this->
object->splitAndTrimOrderElementText($elements, $this->object->getAnswerSeparator());
252 $elements = $this->
object->getRandomOrderingElements();
255 $template =
new ilTemplate(
"tpl.il_as_qpl_orderinghorizontal_preview.html",
true,
true,
"Modules/TestQuestionPool");
256 foreach ($elements as $id => $element) {
257 $template->setCurrentBlock(
"element");
258 $template->setVariable(
"ELEMENT_ID",
"e_" . $this->object->getId() .
"_$id");
261 $template->parseCurrentBlock();
263 $template->setVariable(
"QUESTION_ID", $this->object->getId());
264 $template->setVariable(
"VALUE_ORDERRESULT",
' value="' . join(
'{::}', $elements) .
'"');
265 if ($this->object->textsize >= 10) {
266 $template->setVariable(
"STYLE",
" style=\"font-size: " . $this->object->textsize .
"%;\"");
268 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($this->object->getQuestion(),
true));
269 $questionoutput = $template->get();
270 if (!$show_question_only) {
275 if ($DIC[
'ilBrowser']->isMobile() || $DIC[
'ilBrowser']->isIpad()) {
276 require_once
'Services/jQuery/classes/class.iljQueryUtil.php';
279 $this->tpl->addJavaScript(
'./libs/bower/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js');
281 $this->tpl->addJavascript(
"./Modules/TestQuestionPool/templates/default/orderinghorizontal.js");
282 return $questionoutput;
286 public function getTestOutput($active_id,
$pass, $is_postponed =
false, $use_post_solutions =
false, $show_feedback =
false)
290 $template =
new ilTemplate(
"tpl.il_as_qpl_orderinghorizontal_output.html",
true,
true,
"Modules/TestQuestionPool");
291 $elements = $this->
object->getRandomOrderingElements();
296 #include_once "./Modules/Test/classes/class.ilObjTest.php"; 297 #if (!ilObjTest::_getUsePreviousAnswers($active_id, true)) 299 # if (is_null($pass)) $pass = ilObjTest::_getPass($active_id); 301 $solutions = $this->
object->getTestOutputSolutions($active_id,
$pass);
303 if (is_array($solutions) && count($solutions) == 1) {
304 $elements = explode(
"{::}", $solutions[0][
"value1"]);
307 if (!is_array($solutions) || count($solutions) == 0) {
308 $_SESSION[
'qst_ordering_horizontal_elements'] = $elements;
310 unset(
$_SESSION[
'qst_ordering_horizontal_elements']);
312 foreach ($elements as $id => $element) {
313 $template->setCurrentBlock(
"element");
314 $template->setVariable(
"ELEMENT_ID",
"e_" . $this->object->getId() .
"_$id");
317 $template->parseCurrentBlock();
319 $template->setVariable(
"QUESTION_ID", $this->object->getId());
320 if ($this->object->textsize >= 10) {
321 $template->setVariable(
"STYLE",
" style=\"font-size: " . $this->object->textsize .
"%;\"");
323 $template->setVariable(
"VALUE_ORDERRESULT",
' value="' . join(
'{::}', $elements) .
'"');
324 $template->setVariable(
"QUESTIONTEXT", $this->object->prepareTextareaOutput($this->object->getQuestion(),
true));
325 $questionoutput = $template->get();
326 if (!$show_question_only) {
331 if ($DIC[
'ilBrowser']->isMobile() || $DIC[
'ilBrowser']->isIpad()) {
332 require_once
'Services/jQuery/classes/class.iljQueryUtil.php';
335 $this->tpl->addJavaScript(
'./libs/bower/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js');
337 $this->tpl->addJavascript(
"./Modules/TestQuestionPool/templates/default/orderinghorizontal.js");
338 $questionoutput = $template->get();
339 $pageoutput = $this->
outQuestionPage(
"", $is_postponed, $active_id, $questionoutput);
350 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
351 $errors = $this->feedback(
true);
352 $this->
object->saveFeedbackGeneric(0,
$_POST[
"feedback_incomplete"]);
353 $this->
object->saveFeedbackGeneric(1,
$_POST[
"feedback_complete"]);
354 $this->
object->cleanupMediaObjectUsage();
355 parent::saveFeedback();
364 if ($DIC[
'ilBrowser']->isMobile() || $DIC[
'ilBrowser']->isIpad()) {
365 $files[] =
'./libs/bower/bower_components/jqueryui-touch-punch/jquery.ui.touch-punch.min.js';
381 $rbacsystem = $DIC[
'rbacsystem'];
382 $ilTabs = $DIC[
'ilTabs'];
384 $ilTabs->clearTargets();
386 $this->ctrl->setParameterByClass(
"ilAssQuestionPageGUI",
"q_id",
$_GET[
"q_id"]);
387 include_once
"./Modules/TestQuestionPool/classes/class.assQuestion.php";
388 $q_type = $this->
object->getQuestionType();
390 if (strlen($q_type)) {
391 $classname = $q_type .
"GUI";
392 $this->ctrl->setParameterByClass(strtolower($classname),
"sel_question_types", $q_type);
393 $this->ctrl->setParameterByClass(strtolower($classname),
"q_id",
$_GET[
"q_id"]);
397 if ($rbacsystem->checkAccess(
'write',
$_GET[
"ref_id"])) {
401 $this->ctrl->getLinkTargetByClass(
"ilAssQuestionPageGUI",
"edit"),
402 array(
"edit",
"insert",
"exec_pg"),
412 $force_active =
false;
413 if ($rbacsystem->checkAccess(
'write',
$_GET[
"ref_id"])) {
416 $url = $this->ctrl->getLinkTargetByClass($classname,
"editQuestion");
418 $commands =
$_POST[
"cmd"];
419 if (is_array($commands)) {
420 foreach ($commands as $key => $value) {
421 if (preg_match(
"/^suggestrange_.*/", $key, $matches)) {
422 $force_active =
true;
430 array(
"editQuestion",
"save",
"saveEdit",
"originalSyncForm"),
450 $this->ctrl->getLinkTargetByClass($classname,
"assessment"),
462 if (strpos($this->object->getOrderText(),
'::')) {
463 $answers = explode(
'::', $this->object->getOrderText());
465 $answers = explode(
' ', $this->object->getOrderText());
468 if (!$this->object->feedbackOBJ->specificAnswerFeedbackExists()) {
472 $output =
'<table class="test_specific_feedback"><tbody>';
474 foreach ($answers as $idx => $answer) {
475 $feedback = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
476 $this->object->getId(),
481 $output .=
"<tr><td>{$answer}</td><td>{$feedback}</td></tr>";
484 $output .=
'</tbody></table>';
486 return $this->
object->prepareTextareaOutput($output,
true);
491 $this->
object->setTextSize(
$_POST[
"textsize"]);
492 $this->
object->setOrderText(
$_POST[
"ordertext"]);
493 $this->
object->setPoints(
$_POST[
"points"]);
514 $ordertext->
setValue($this->object->prepareTextareaOutput($this->object->getOrderText()));
515 $ordertext->setRequired(
true);
516 $ordertext->setInfo(sprintf($this->lng->txt(
"ordertext_info"), $this->
object->separator));
517 $ordertext->setRows(10);
518 $ordertext->setCols(80);
522 $textsize->
setValue($this->object->getTextSize());
523 $textsize->setInfo($this->lng->txt(
"textsize_info"));
524 $textsize->setSize(6);
525 $textsize->setMinValue(10);
526 $textsize->setRequired(
false);
534 if ($this->object->getPoints() == null) {
535 $points->setValue(
"1");
537 $points->setValue($this->object->getPoints());
539 $points->setRequired(
true);
541 $points->setMinValue(0.0);
542 $points->setMinvalueShouldBeGreater(
true);
563 $aggregate = array();
564 foreach ($relevant_answers_chosen as $answer) {
565 $answer = str_replace($this->object->getAnswerSeparator(),
' - ', $answer);
566 if (in_array($answer[
'value1'], $aggregate)) {
567 $aggregate[$answer[
'value1']] = $aggregate[$answer[
'value1']] + 1;
569 $aggregate[$answer[
'value1']] = 1;
583 $tpl =
new ilTemplate(
'tpl.il_as_aggregated_answers_table.html',
true,
true,
"Modules/TestQuestionPool");
585 foreach ($aggregate as $key => $line_data) {
586 $tpl->setCurrentBlock(
'aggregaterow');
587 $tpl->setVariable(
'COUNT', $line_data);
588 $tpl->setVariable(
'OPTION', $key);
589 $tpl->parseCurrentBlock();
598 foreach ($relevantAnswers as $ans) {
599 $md5 = md5($ans[
'value1']);
601 if (!isset($answers[$md5])) {
602 $answer = str_replace(
603 $this->object->getAnswerSeparator(),
604 ' - ',
608 $answers[$md5] = array(
609 'answer' => $answer,
'frequency' => 0
613 $answers[$md5][
'frequency']++;
625 $points->setValue($this->object->getPoints());
626 $points->setRequired(
true);
628 $points->setMinValue(0.0);
629 $points->setMinvalueShouldBeGreater(
true);
638 $this->
object->setPoints((
float) $form->
getInput(
'points'));
isTestPresentationContext()
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
hasCorrectSolution($activeId, $passIndex)
addTab_QuestionPreview(ilTabsGUI $tabsGUI)
Class for horizontal ordering questions.
addBasicQuestionFormProperties($form)
Add basic question form properties: assessment: title, author, description, question, working time.
addTab_QuestionHints(ilTabsGUI $tabs)
adds the hints tab to ilTabsGUI
saveFeedback()
Saves the feedback for a single choice question.
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
supportsIntermediateSolutionOutput()
Question type specific support of intermediate solution output The function getSolutionOutput respect...
setValue($a_value)
Set Value.
The assOrderingHorizontalGUI class encapsulates the GUI representation for horizontal ordering questi...
getQuestionTemplate()
get question template
const CSS_CLASS_FEEDBACK_CORRECT
renderAggregateView($aggregate)
getSpecificFeedbackOutput($userSolution)
populateTaxonomyFormSection(ilPropertyFormGUI $form)
getUseIntermediateSolution()
Get if intermediate solution should be used for solution output.
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form)
editQuestion($checkonly=false)
Creates an output of the edit form for the question.
writeQuestionGenericPostData()
getILIASPage($html="")
Returns the ILIAS Page around a question.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
getAggregatedAnswersView($relevant_answers)
Returns an html string containing a question specific representation of the answers so far given in t...
getSolutionOutput( $active_id, $pass=null, $graphicalOutput=false, $result_output=false, $show_question_only=true, $show_feedback=false, $show_correct_solution=false, $show_manual_scoring=false, $show_question_text=true)
Get the question solution output.
aggregateAnswers($relevant_answers_chosen, $answer_defined_on_question)
addTab_QuestionFeedback(ilTabsGUI $tabs)
adds the feedback tab to ilTabsGUI
const CSS_CLASS_FEEDBACK_WRONG
Basic GUI class for assessment questions.
setErrorMessage($errormessage)
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from $_POST and applies them to the data object.
static initjQueryUI($a_tpl=null)
inits and adds the jQuery-UI JS-File to the global template (see included_components.txt for included components)
saveTaxonomyAssignments()
__construct($id=-1)
assOrderingHorizontalGUI constructor
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
output question page
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
setQuestionTabs()
Sets the ILIAS tabs for this question type.
getPresentationJavascripts()
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
addBackTab(ilTabsGUI $ilTabs)
getPreview($show_question_only=false, $showInlineFeedback=false)
getAnswersFrequency($relevantAnswers, $questionIndex)
getAfterParticipationSuppressionQuestionPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
getGenericFeedbackOutput($active_id, $pass)
Returns the answer specific feedback for the question.
Interface ilGuiQuestionScoringAdjustable.
getTestOutput($active_id, $pass, $is_postponed=false, $use_post_solutions=false, $show_feedback=false)
addTab_SuggestedSolution(ilTabsGUI $tabs, $classname)
addQuestionFormCommandButtons($form)
Add the command buttons of a question properties form.
writePostData($always=false)
{}