4 require_once
'./Modules/TestQuestionPool/classes/class.assQuestionGUI.php';
5 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilGuiQuestionScoringAdjustable.php';
6 require_once
'./Modules/TestQuestionPool/interfaces/interface.ilGuiAnswerScoringAdjustable.php';
7 require_once
'./Modules/Test/classes/inc.AssessmentConstants.php';
35 $this->tiny_mce_enabled = (
new ilSetting(
'advanced_editing'))->
get(
'advanced_editing_javascript_editor')
36 ===
'tinymce' ? true :
false;
38 include_once
"./Modules/TestQuestionPool/classes/class.assTextQuestion.php";
41 $this->
object->loadFromDb($id);
50 $hasErrors = (!$always) ? $this->
editQuestion(
true) :
false;
52 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
72 include_once(
"./Services/Form/classes/class.ilPropertyFormGUI.php");
74 $this->editForm = $form;
76 $form->setFormAction($this->ctrl->getFormAction($this));
78 $form->setMultipart(
true);
79 $form->setTableWidth(
"100%");
80 $form->setId(
"asstextquestion");
94 $form->setValuesByPost();
96 $form->setValuesByPost();
103 $this->tpl->setVariable(
"QUESTION_DATA", $form->getHTML());
110 $answerTexts = array();
112 foreach ($answers as $answer) {
113 $answerTexts[] = $answer->getAnswertext();
127 include_once
"./Services/RTE/classes/class.ilRTE.php";
129 include_once
"./Services/RTE/classes/class.$rtestring.php";
130 $rte =
new $rtestring();
131 include_once
"./Services/Object/classes/class.ilObject.php";
134 $rte->addUserTextEditor(
"textinput");
166 $graphicalOutput =
false,
167 $result_output =
false,
168 $show_question_only =
true,
169 $show_feedback =
false,
170 $show_correct_solution =
false,
171 $show_manual_scoring =
false,
172 $show_question_text =
true 178 if (($active_id > 0) && (!$show_correct_solution)) {
179 $solution = $user_solution;
185 include_once
"./Services/UICore/classes/class.ilTemplate.php";
186 $template =
new ilTemplate(
"tpl.il_as_qpl_text_question_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
187 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
189 $solution = $this->
object->getHtmlUserSolutionPurifier()->purify($solution);
191 $template->setCurrentBlock(
'essay_div');
192 $template->setVariable(
"DIV_ESSAY", $this->object->prepareTextareaOutput($solution,
true));
194 $template->setCurrentBlock(
'essay_textarea');
195 $template->setVariable(
"TA_ESSAY", $this->object->prepareTextareaOutput($solution,
true,
true));
197 $template->parseCurrentBlock();
199 if (!$show_correct_solution) {
200 $max_no_of_chars = $this->
object->getMaxNumOfChars();
202 if ($max_no_of_chars == 0) {
203 $max_no_of_chars = ucfirst($this->lng->txt(
'unlimited'));
206 $act_no_of_chars = $this->
object->countLetters($solution);
207 $template->setVariable(
"CHARACTER_INFO",
'<b>' . $max_no_of_chars .
'</b>' .
208 $this->lng->txt(
'answer_characters') .
' <b>' . $act_no_of_chars .
'</b>');
211 if ($this->object->isWordCounterEnabled()) {
212 $template->setCurrentBlock(
'word_count');
213 $template->setVariable(
215 $this->lng->txt(
'qst_essay_written_words') .
216 ' <b>' . $this->
object->countWords($solution) .
'</b>' 218 $template->parseCurrentBlock();
221 if (($active_id > 0) && (!$show_correct_solution)) {
222 if ($graphicalOutput) {
224 $reached_points = $this->
object->getReachedPoints($active_id,
$pass);
225 if ($reached_points == $this->object->getMaximumPoints()) {
226 $template->setCurrentBlock(
"icon_ok");
228 $template->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
229 $template->parseCurrentBlock();
231 $template->setCurrentBlock(
"icon_ok");
232 if ($reached_points > 0) {
234 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_not_correct_but_positive"));
237 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_wrong"));
239 $template->parseCurrentBlock();
243 if ($show_question_text ==
true) {
244 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
246 $questionoutput = $template->get();
249 if ($show_feedback) {
252 $feedback .= strlen($fb) ? $fb :
'';
256 array($user_solution =>
'')
259 $feedback .= strlen($fb) ? $fb :
'';
261 if (strlen($feedback)) {
267 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
268 $solutiontemplate->setVariable(
"FEEDBACK", $this->object->prepareTextareaOutput($feedback,
true));
271 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
273 $solutionoutput = $solutiontemplate->get();
274 if (!$show_question_only) {
278 return $solutionoutput;
283 $answers = $this->
object->getAnswers();
284 if (!count($answers)) {
289 $tplFile =
'tpl.il_as_qpl_text_question_best_solution_html.html';
291 $tplFile =
'tpl.il_as_qpl_text_question_best_solution_ta.html';
294 $tpl =
new ilTemplate($tplFile,
true,
true,
'Modules/TestQuestionPool');
296 foreach ($answers as $answer) {
299 $keywordString .= $answer->getPoints() .
' ';
300 if ($answer->getPoints() ==
'1' || $answer->getPoints() ==
'-1') {
301 $keywordString .= $this->lng->txt(
'point');
303 $keywordString .= $this->lng->txt(
'points');
305 $keywordString .=
' ' . $this->lng->txt(
'for') .
' ';
307 $keywordString .= $answer->getAnswertext();
309 $tpl->setCurrentBlock(
'keyword');
310 $tpl->setVariable(
'KEYWORD', $keywordString);
311 $tpl->parseCurrentBlock();
314 $tpl->setVariable(
'KEYWORD_HEADER', $this->lng->txt(
'solution_contain_keywords'));
315 $tpl->setVariable(
'SCORING_LABEL', $this->lng->txt(
'essay_scoring_mode') .
': ');
317 switch ($this->object->getKeywordRelation()) {
319 $tpl->setVariable(
'SCORING_MODE', $this->lng->txt(
'essay_scoring_mode_keyword_relation_any'));
322 $tpl->setVariable(
'SCORING_MODE', $this->lng->txt(
'essay_scoring_mode_keyword_relation_all'));
325 $tpl->setVariable(
'SCORING_MODE', $this->lng->txt(
'essay_scoring_mode_keyword_relation_one'));
336 foreach ($solutions as $idx => $solution_value) {
337 $user_solution = $solution_value[
"value1"];
339 return $user_solution;
342 public function getPreview($show_question_only =
false, $showInlineFeedback =
false)
345 include_once
"./Services/UICore/classes/class.ilTemplate.php";
346 $template =
new ilTemplate(
"tpl.il_as_qpl_text_question_output.html",
true,
true,
"Modules/TestQuestionPool");
347 if ($this->object->getMaxNumOfChars()) {
348 $template->setCurrentBlock(
"maximum_char_hint");
349 $template->setVariable(
"MAXIMUM_CHAR_HINT", sprintf($this->lng->txt(
"text_maximum_chars_allowed"), $this->
object->getMaxNumOfChars()));
350 $template->parseCurrentBlock();
351 #mbecker: No such block. $template->setCurrentBlock("has_maxchars"); 352 $template->setVariable(
"MAXCHARS", $this->object->getMaxNumOfChars());
353 $template->parseCurrentBlock();
354 $template->setCurrentBlock(
"maxchars_counter");
355 $template->setVariable(
"QID", $this->object->getId());
356 $template->setVariable(
"MAXCHARS", $this->object->getMaxNumOfChars());
357 $template->setVariable(
"TEXTBOXSIZE", strlen($this->object->getMaxNumOfChars()));
358 $template->setVariable(
"CHARACTERS", $this->lng->txt(
"qst_essay_chars_remaining"));
359 $template->parseCurrentBlock();
362 if ($this->object->isWordCounterEnabled()) {
363 $template->setCurrentBlock(
"word_counter");
364 $template->setVariable(
"QID", $this->object->getId());
365 $template->setVariable(
"WORDCOUNTER", $this->lng->txt(
"qst_essay_allready_written_words"));
366 $template->parseCurrentBlock();
375 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
376 $template->setVariable(
"QID", $this->object->getId());
378 $questionoutput = $template->get();
382 if (!$show_question_only) {
386 return $questionoutput;
389 public function getTestOutput($active_id,
$pass = null, $is_postponed =
false, $use_post_solutions =
false, $inlineFeedback =
false)
396 $solutions = $this->
object->getUserSolutionPreferingIntermediate($active_id,
$pass);
397 foreach ($solutions as $idx => $solution_value) {
398 $user_solution = $solution_value[
"value1"];
401 if ($this->tiny_mce_enabled) {
402 $user_solution = htmlentities($user_solution);
405 $user_solution = str_replace([
'{',
'}',
'\\'], [
'{',
'}',
'\'], $user_solution);
409 include_once
"./Services/UICore/classes/class.ilTemplate.php";
410 $template =
new ilTemplate(
"tpl.il_as_qpl_text_question_output.html",
true,
true,
"Modules/TestQuestionPool");
411 if ($this->object->getMaxNumOfChars()) {
412 $template->setCurrentBlock(
"maximum_char_hint");
413 $template->setVariable(
"MAXIMUM_CHAR_HINT", sprintf($this->lng->txt(
"text_maximum_chars_allowed"), $this->
object->getMaxNumOfChars()));
414 $template->parseCurrentBlock();
415 #mbecker: No such block. $template->setCurrentBlock("has_maxchars"); 416 $template->setVariable(
"MAXCHARS", $this->object->getMaxNumOfChars());
417 $template->parseCurrentBlock();
418 $template->setCurrentBlock(
"maxchars_counter");
419 $template->setVariable(
"MAXCHARS", $this->object->getMaxNumOfChars());
420 $template->setVariable(
"QID", $this->object->getId());
421 $template->setVariable(
"TEXTBOXSIZE", strlen($this->object->getMaxNumOfChars()));
422 $template->setVariable(
"CHARACTERS", $this->lng->txt(
"qst_essay_chars_remaining"));
423 $template->parseCurrentBlock();
426 if ($this->object->isWordCounterEnabled()) {
427 $template->setCurrentBlock(
"word_counter");
428 $template->setVariable(
"QID", $this->object->getId());
429 $template->setVariable(
"WORDCOUNTER", $this->lng->txt(
"qst_essay_allready_written_words"));
430 $template->parseCurrentBlock();
433 $template->setVariable(
"QID", $this->object->getId());
434 $template->setVariable(
"ESSAY", $user_solution);
435 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
436 $questionoutput = $template->get();
440 $pageoutput = $this->
outQuestionPage(
"", $is_postponed, $active_id, $questionoutput);
441 include_once
"./Services/YUI/classes/class.ilYuiUtil.php";
448 $tpl =
new ilTemplate(
'tpl.charcounter.html',
true,
true,
'Modules/TestQuestionPool');
450 $tpl->setCurrentBlock(
'tinymce_handler');
451 $tpl->touchBlock(
'tinymce_handler');
452 $tpl->parseCurrentBlock();
454 if ($this->object->getMaxNumOfChars() > 0) {
455 $tpl->setCurrentBlock(
'letter_counter_js');
456 $tpl->setVariable(
"MAXCHARS", $this->object->getMaxNumOfChars());
457 $tpl->parseCurrentBlock();
460 if ($this->object->isWordCounterEnabled()) {
461 $tpl->setCurrentBlock(
'word_counter_js');
462 $tpl->touchBlock(
'word_counter_js');
463 $tpl->parseCurrentBlock();
466 $tpl->setCurrentBlock(
'counter_js');
467 $tpl->setVariable(
"QID", $this->object->getId());
468 $tpl->parseCurrentBlock();
476 if (
$_POST[
"cmd"][
"addSuggestedSolution"]) {
482 if (!$this->checkInput()) {
483 ilUtil::sendInfo($this->lng->txt(
"fill_out_all_required_fields_add_answer"));
488 $this->
object->saveToDb();
489 $this->ctrl->setParameter($this,
"q_id", $this->object->getId());
490 $this->tpl->setVariable(
"HEADER", $this->object->getTitle());
492 parent::addSuggestedSolution();
497 $user_answer = key($userSolution);
501 foreach ($this->object->getAnswers() as $idx => $ans) {
502 if ($this->object->isKeywordMatching($user_answer, htmlspecialchars($ans->getAnswertext()))) {
503 $fb = $this->
object->feedbackOBJ->getSpecificAnswerFeedbackTestPresentation(
504 $this->object->getId(),
508 $feedback .=
'<tr><td><b><i>' . $ans->getAnswertext() .
'</i></b></td><td>';
509 $feedback .= $fb .
'</td> </tr>';
513 if ($feedback ===
'') {
517 $feedback =
'<table><tbody>' . $feedback .
'</tbody></table>';
518 return $this->
object->prepareTextareaOutput($feedback,
true);
523 $this->
object->setWordCounterEnabled(isset(
$_POST[
'wordcounter']) &&
$_POST[
'wordcounter']);
524 $this->
object->setMaxNumOfChars(
$_POST[
"maxchars"]);
525 $this->
object->setTextRating(
$_POST[
"text_rating"]);
526 $this->
object->setKeywordRelation(
$_POST[
'scoring_mode']);
531 switch ($this->object->getKeywordRelation()) {
533 $this->
object->setAnswers(array());
534 $this->
object->setPoints(
$_POST[
'non_keyword_points']);
537 $this->
object->setAnswers(
$_POST[
'any_keyword']);
538 $this->
object->setPoints($this->object->getMaximumPoints());
541 $this->
object->setAnswers(
$_POST[
'all_keyword']);
542 $this->
object->setPoints(
$_POST[
'all_keyword_points']);
545 $this->
object->setAnswers(
$_POST[
'one_keyword']);
546 $this->
object->setPoints(
$_POST[
'one_keyword_points']);
554 $wordcounter =
new ilCheckboxInputGUI($this->lng->txt(
'qst_essay_wordcounter_enabled'),
'wordcounter');
555 $wordcounter->
setInfo($this->lng->txt(
'qst_essay_wordcounter_enabled_info'));
556 $wordcounter->setChecked($this->object->isWordCounterEnabled());
562 $maxchars->setMinValue(1);
563 if ($this->object->getMaxNumOfChars() > 0) {
564 $maxchars->setValue($this->object->getMaxNumOfChars());
566 $maxchars->setInfo($this->lng->txt(
"description_maxchars"));
570 $textrating =
new ilSelectInputGUI($this->lng->txt(
"text_rating"),
"text_rating");
571 $text_options = array(
572 "ci" => $this->lng->txt(
"cloze_textgap_case_insensitive"),
573 "cs" => $this->lng->txt(
"cloze_textgap_case_sensitive"),
574 "l1" => sprintf($this->lng->txt(
"cloze_textgap_levenshtein_of"),
"1"),
575 "l2" => sprintf($this->lng->txt(
"cloze_textgap_levenshtein_of"),
"2"),
576 "l3" => sprintf($this->lng->txt(
"cloze_textgap_levenshtein_of"),
"3"),
577 "l4" => sprintf($this->lng->txt(
"cloze_textgap_levenshtein_of"),
"4"),
578 "l5" => sprintf($this->lng->txt(
"cloze_textgap_levenshtein_of"),
"5")
580 $textrating->setOptions($text_options);
581 $textrating->setValue($this->object->getTextRating());
590 $this->lng->txt(
'essay_scoring_mode'),
595 $this->lng->txt(
'essay_scoring_mode_without_keywords'),
598 'essay_scoring_mode_without_keywords_desc' 602 $this->lng->txt(
'essay_scoring_mode_keyword_relation_any'),
605 'essay_scoring_mode_keyword_relation_any_desc' 609 $this->lng->txt(
'essay_scoring_mode_keyword_relation_all'),
612 'essay_scoring_mode_keyword_relation_all_desc' 616 $this->lng->txt(
'essay_scoring_mode_keyword_relation_one'),
619 'essay_scoring_mode_keyword_relation_one_desc' 623 $scoringMode->addOption($scoringOptionNone);
624 $scoringMode->addOption($scoringOptionAnyKeyword);
625 $scoringMode->addOption($scoringOptionAllKeyword);
626 $scoringMode->addOption($scoringOptionOneKeyword);
627 $scoringMode->setRequired(
true);
629 strlen($this->object->getKeywordRelation()) ? $this->object->getKeywordRelation(
633 if ($this->object->getAnswerCount() == 0) {
634 $this->
object->addAnswer(
"", 1, 0, 0);
636 require_once
"./Modules/TestQuestionPool/classes/class.ilEssayKeywordWizardInputGUI.php";
639 $nonKeywordPoints =
new ilNumberInputGUI($this->lng->txt(
"points"),
"non_keyword_points");
641 $nonKeywordPoints->setValue($this->object->getPoints());
642 $nonKeywordPoints->setRequired(
true);
643 $nonKeywordPoints->setSize(3);
644 $nonKeywordPoints->setMinValue(0.0);
645 $nonKeywordPoints->setMinvalueShouldBeGreater(
true);
646 $scoringOptionNone->
addSubItem($nonKeywordPoints);
651 $anyKeyword->setQuestionObject($this->
object);
652 $anyKeyword->setSingleline(
true);
653 $anyKeyword->setValues($this->object->getAnswers());
654 $scoringOptionAnyKeyword->
addSubItem($anyKeyword);
661 $allKeyword->setValues(self::buildAnswerTextOnlyArray($this->object->getAnswers()));
662 $scoringOptionAllKeyword->
addSubItem($allKeyword);
663 $allKeywordPoints =
new ilNumberInputGUI($this->lng->txt(
"points"),
"all_keyword_points");
665 $allKeywordPoints->setValue($this->object->getPoints());
666 $allKeywordPoints->setRequired(
true);
667 $allKeywordPoints->setSize(3);
668 $allKeywordPoints->setMinValue(0.0);
669 $allKeywordPoints->setMinvalueShouldBeGreater(
true);
670 $scoringOptionAllKeyword->
addSubItem($allKeywordPoints);
677 $oneKeyword->setValues(self::buildAnswerTextOnlyArray($this->object->getAnswers()));
678 $scoringOptionOneKeyword->
addSubItem($oneKeyword);
679 $oneKeywordPoints =
new ilNumberInputGUI($this->lng->txt(
"points"),
"one_keyword_points");
681 $oneKeywordPoints->setValue($this->object->getPoints());
682 $oneKeywordPoints->setRequired(
true);
683 $oneKeywordPoints->setSize(3);
684 $oneKeywordPoints->setMinValue(0.0);
685 $oneKeywordPoints->setMinvalueShouldBeGreater(
true);
686 $scoringOptionOneKeyword->
addSubItem($oneKeywordPoints);
static _getRTEClassname()
isTestPresentationContext()
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
hasCorrectSolution($activeId, $passIndex)
This class represents an option in a radio group.
getAnswersFrequency($relevantAnswers, $questionIndex)
addBasicQuestionFormProperties($form)
Add basic question form properties: assessment: title, author, description, question, working time.
static getScoringModesWithPointsByKeyword()
getSpecificFeedbackOutput($userSolution)
__construct($id=-1)
assTextQuestionGUI constructor
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
getPreview($show_question_only=false, $showInlineFeedback=false)
writeAnswerSpecificPostData(ilPropertyFormGUI $form)
Extracts the answer specific values from $_POST and applies them to the data object.
getQuestionTemplate()
get question template
const CSS_CLASS_FEEDBACK_CORRECT
Text question GUI representation.
editQuestion($checkonly=false)
Creates an output of the edit form for the question.
populateTaxonomyFormSection(ilPropertyFormGUI $form)
getUseIntermediateSolution()
Get if intermediate solution should be used for solution output.
getAggregatedAnswersView($relevant_answers)
Returns an html string containing a question specific representation of the answers so far given in t...
static _lookupObjectId($a_ref_id)
lookup object id
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setValue($a_value)
Set Value.
writeQuestionGenericPostData()
supportsIntermediateSolutionOutput()
Question type specific support of intermediate solution output The function getSolutionOutput respect...
addSubItem($a_item)
Add Subitem.
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)
getUserAnswer($active_id, $pass)
static initDomEvent(ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI DomEvent.
const CSS_CLASS_FEEDBACK_WRONG
getAfterParticipationSuppressionQuestionPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
Basic GUI class for assessment questions.
static _lookupType($a_id, $a_reference=false)
lookup object type
getTestOutput($active_id, $pass=null, $is_postponed=false, $use_post_solutions=false, $inlineFeedback=false)
static buildAnswerTextOnlyArray($answers)
getAfterParticipationSuppressionAnswerPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
saveTaxonomyAssignments()
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from $_POST and applies them to the data object.
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.
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
output question page
__construct(Container $dic, ilPlugin $plugin)
Interface ilGuiAnswerScoringAdjustable.
writePostData($always=false)
{}
This class represents a text wizard property in a property form.
getGenericFeedbackOutput($active_id, $pass)
Returns the answer specific feedback for the question.
Interface ilGuiQuestionScoringAdjustable.
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form)
isAnswerFreuqencyStatisticSupported()
populateAnswerSpecificFormPart(\ilPropertyFormGUI $form)
addQuestionFormCommandButtons($form)
Add the command buttons of a question properties form.
renderPurposeSupportsFormHtml()