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';
38 require_once
'./Modules/TestQuestionPool/classes/class.assTextSubset.php';
41 $this->
object->loadFromDb($id);
54 $this->answers_from_post =
$_POST[
'answers'][
'answer'];
55 $hasErrors = (!$always) ? $this->
editQuestion(
true) :
false;
57 require_once
'Services/Form/classes/class.ilPropertyFormGUI.php';
75 require_once
'./Services/Form/classes/class.ilPropertyFormGUI.php';
77 $this->editForm = $form;
79 $form->setFormAction($this->ctrl->getFormAction($this));
81 $form->setMultipart(
false);
82 $form->setTableWidth(
"100%");
83 $form->setId(
"asstextsubset");
93 $form->setValuesByPost();
94 $points = $form->getItemByPostVar(
'points');
95 $points->setValue($this->object->getMaximumPoints());
97 $form->setValuesByPost();
104 $this->tpl->setVariable(
"QUESTION_DATA", $form->getHTML());
115 $position = key(
$_POST[
'cmd'][
'addanswers']);
116 $this->
object->addAnswer(
"", 0, $position + 1);
126 $position = key(
$_POST[
'cmd'][
'removeanswers']);
127 $this->
object->deleteAnswer($position);
157 $graphicalOutput =
false,
158 $result_output =
false,
159 $show_question_only =
true,
160 $show_feedback =
false,
161 $show_correct_solution =
false,
162 $show_manual_scoring =
false,
163 $show_question_text =
true 166 $solutions = array();
167 if (($active_id > 0) && (!$show_correct_solution)) {
171 foreach ($this->object->answers as $answer) {
172 if ($answer->getPoints() > 0) {
173 if (!is_array($rank[$answer->getPoints()])) {
174 $rank[$answer->getPoints()] = array();
176 array_push($rank[$answer->getPoints()], $answer->getAnswertext());
179 krsort($rank, SORT_NUMERIC);
180 foreach ($rank as
$index => $bestsolutions) {
181 array_push($solutions, array(
"value1" => join(
",", $bestsolutions),
"points" =>
$index));
186 include_once
"./Services/UICore/classes/class.ilTemplate.php";
187 $template =
new ilTemplate(
"tpl.il_as_qpl_textsubset_output_solution.html",
true,
true,
"Modules/TestQuestionPool");
188 $solutiontemplate =
new ilTemplate(
"tpl.il_as_tst_solution_output.html",
true,
true,
"Modules/TestQuestionPool");
189 $available_answers = &$this->
object->getAvailableAnswers();
190 for (
$i = 0;
$i < $this->
object->getCorrectAnswers();
$i++) {
191 if ((!$test_id) && (strcmp($solutions[
$i][
"value1"],
"") == 0)) {
193 if (($active_id > 0) && (!$show_correct_solution)) {
194 if ($graphicalOutput) {
196 $index = $this->
object->isAnswerCorrect($available_answers, $solutions[$i][
"value1"]);
199 unset($available_answers[
$index]);
203 $template->setCurrentBlock(
"icon_ok");
205 $template->setVariable(
"TEXT_OK", $this->lng->txt(
"answer_is_right"));
206 $template->parseCurrentBlock();
208 $template->setCurrentBlock(
"icon_ok");
210 $template->setVariable(
"TEXT_NOT_OK", $this->lng->txt(
"answer_is_wrong"));
211 $template->parseCurrentBlock();
215 $template->setCurrentBlock(
"textsubset_row");
217 $template->setVariable(
"COUNTER", $i + 1);
218 if ($result_output) {
219 $points = $solutions[
$i][
"points"];
220 $resulttext = ($points == 1) ?
"(%s " . $this->lng->txt(
"point") .
")" :
"(%s " . $this->lng->txt(
"points") .
")";
221 $template->setVariable(
"RESULT_OUTPUT", sprintf($resulttext, $points));
223 $template->parseCurrentBlock();
226 if ($show_question_text ==
true) {
227 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
229 $questionoutput = $template->get();
231 if (strlen($feedback)) {
237 $solutiontemplate->setVariable(
"ILC_FB_CSS_CLASS", $cssClass);
238 $solutiontemplate->setVariable(
"FEEDBACK", $this->object->prepareTextareaOutput($feedback,
true));
240 $solutiontemplate->setVariable(
"SOLUTION_OUTPUT", $questionoutput);
242 $solutionoutput = $solutiontemplate->get();
243 if (!$show_question_only) {
247 return $solutionoutput;
250 public function getPreview($show_question_only =
false, $showInlineFeedback =
false)
254 include_once
"./Services/UICore/classes/class.ilTemplate.php";
255 $template =
new ilTemplate(
"tpl.il_as_qpl_textsubset_output.html",
true,
true,
"Modules/TestQuestionPool");
256 $width = $this->
object->getMaxTextboxWidth();
257 for (
$i = 0;
$i < $this->
object->getCorrectAnswers();
$i++) {
258 $template->setCurrentBlock(
"textsubset_row");
259 foreach ($solutions as $idx => $solution_value) {
264 $template->setVariable(
"COUNTER",
$i + 1);
265 $template->setVariable(
"TEXTFIELD_ID", sprintf(
"%02d",
$i + 1));
266 $template->setVariable(
"TEXTFIELD_SIZE", $width);
267 $template->parseCurrentBlock();
269 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
270 $questionoutput = $template->get();
271 if (!$show_question_only) {
275 return $questionoutput;
278 public function getTestOutput($active_id,
$pass = null, $is_postponed =
false, $use_post_solutions =
false, $inlineFeedback =
false)
285 #include_once "./Modules/Test/classes/class.ilObjTest.php"; 286 #if (!ilObjTest::_getUsePreviousAnswers($active_id, true)) 288 # if (is_null($pass)) $pass = ilObjTest::_getPass($active_id); 291 $solutions = $this->
object->getUserSolutionPreferingIntermediate($active_id,
$pass);
295 include_once
"./Services/UICore/classes/class.ilTemplate.php";
296 $template =
new ilTemplate(
"tpl.il_as_qpl_textsubset_output.html",
true,
true,
"Modules/TestQuestionPool");
297 $width = $this->
object->getMaxTextboxWidth();
298 for (
$i = 0;
$i < $this->
object->getCorrectAnswers();
$i++) {
299 $template->setCurrentBlock(
"textsubset_row");
300 foreach ($solutions as $idx => $solution_value) {
305 $template->setVariable(
"COUNTER",
$i + 1);
306 $template->setVariable(
"TEXTFIELD_ID", sprintf(
"%02d",
$i + 1));
307 $template->setVariable(
"TEXTFIELD_SIZE", $width);
308 $template->parseCurrentBlock();
310 $template->setVariable(
"QUESTIONTEXT", $this->object->getQuestionForHTMLOutput());
311 $questionoutput = $template->get();
312 $pageoutput = $this->
outQuestionPage(
"", $is_postponed, $active_id, $questionoutput);
319 return $this->
object->prepareTextareaOutput($output,
true);
324 $this->
object->setCorrectAnswers(
$_POST[
"correctanswers"]);
325 $this->
object->setTextRating(
$_POST[
"text_rating"]);
331 $this->
object->flushAnswers();
332 foreach ($this->answers_from_post as
$index => $answertext) {
340 $correctanswers =
new ilNumberInputGUI($this->lng->txt(
"nr_of_correct_answers"),
"correctanswers");
342 $correctanswers->setDecimals(0);
343 $correctanswers->setSize(3);
344 $correctanswers->setValue($this->object->getCorrectAnswers());
345 $correctanswers->setRequired(
true);
346 $form->
addItem($correctanswers);
349 $points =
new ilNumberInputGUI($this->lng->txt(
"maximum_points"),
"points");
351 $points->setMinvalueShouldBeGreater(
true);
353 $points->setDisabled(
true);
354 $points->allowDecimals(
true);
355 $points->setValue($this->object->getMaximumPoints());
356 $points->setRequired(
false);
360 $textrating =
new ilSelectInputGUI($this->lng->txt(
"text_rating"),
"text_rating");
361 $text_options = array(
362 "ci" => $this->lng->txt(
"cloze_textgap_case_insensitive"),
363 "cs" => $this->lng->txt(
"cloze_textgap_case_sensitive")
365 if (!$this->object->getSelfAssessmentEditingMode()) {
366 $text_options[
"l1"] = sprintf($this->lng->txt(
"cloze_textgap_levenshtein_of"),
"1");
367 $text_options[
"l2"] = sprintf($this->lng->txt(
"cloze_textgap_levenshtein_of"),
"2");
368 $text_options[
"l3"] = sprintf($this->lng->txt(
"cloze_textgap_levenshtein_of"),
"3");
369 $text_options[
"l4"] = sprintf($this->lng->txt(
"cloze_textgap_levenshtein_of"),
"4");
370 $text_options[
"l5"] = sprintf($this->lng->txt(
"cloze_textgap_levenshtein_of"),
"5");
373 $textrating->setValue($this->object->getTextRating());
381 include_once
"./Modules/TestQuestionPool/classes/class.ilAnswerWizardInputGUI.php";
384 $choices->setQuestionObject($this->
object);
385 $choices->setSingleline(
true);
386 $choices->setAllowMove(
false);
387 $choices->setMinValue(0.0);
388 if ($this->object->getAnswerCount() == 0) {
389 $this->
object->addAnswer(
"", 0, 0);
391 $choices->setValues(array_map(
393 $value->setAnswerText(html_entity_decode($value->getAnswerText()));
396 $this->
object->getAnswers()
448 $aggregate = array();
450 foreach ($relevant_answers_chosen as $relevant_answer) {
451 if (array_key_exists($relevant_answer[
'value1'], $aggregate)) {
452 $aggregate[$relevant_answer[
'value1']]++;
454 $aggregate[$relevant_answer[
'value1']] = 1;
467 $tpl =
new ilTemplate(
'tpl.il_as_aggregated_answers_table.html',
true,
true,
"Modules/TestQuestionPool");
469 foreach ($aggregate as $key => $value) {
470 $tpl->setCurrentBlock(
'aggregaterow');
471 $tpl->setVariable(
'OPTION', $key);
472 $tpl->setVariable(
'COUNT', $value);
473 $tpl->parseCurrentBlock();
482 foreach ($relevantAnswers as $ans) {
483 if (!isset($answers[$ans[
'value1']])) {
484 $answers[$ans[
'value1']] = array(
485 'answer' => $ans[
'value1'],
'frequency' => 0
489 $answers[$ans[
'value1']][
'frequency']++;
497 foreach ($answers as $key => $ans) {
500 foreach ($this->object->getAnswers() as $item) {
501 if ($ans[
'answer'] !== $item->getAnswerText()) {
510 $answers[$key][
'addable'] =
true;
520 require_once
'Modules/TestQuestionPool/classes/forms/class.ilAssAnswerCorrectionsInputGUI.php';
523 $choices->setQuestionObject($this->
object);
524 $choices->setValues($this->object->getAnswers());
535 $points = $form->
getInput(
'answers')[
'points'];
537 foreach ($this->object->getAnswers() as
$index => $answer) {
539 $answer->setPoints((
float) $points[$index]);
isTestPresentationContext()
populateCorrectionsFormProperties(ilPropertyFormGUI $form)
hasCorrectSolution($activeId, $passIndex)
editQuestion($checkonly=false)
Creates an output of the edit form for the question.
addBasicQuestionFormProperties($form)
Add basic question form properties: assessment: title, author, description, question, working time.
getPreview($show_question_only=false, $showInlineFeedback=false)
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.
getAfterParticipationSuppressionAnswerPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
Class for answers with a binary state indicator.
escapeTemplatePlaceholders(string $text)
saveCorrectionsFormProperties(ilPropertyFormGUI $form)
Class for TextSubset questions.
getQuestionTemplate()
get question template
const CSS_CLASS_FEEDBACK_CORRECT
populateQuestionSpecificFormPart(\ilPropertyFormGUI $form)
populateTaxonomyFormSection(ilPropertyFormGUI $form)
getUseIntermediateSolution()
Get if intermediate solution should be used for solution output.
removeanswers()
Remove an answer.
getAnswersFrequency($relevantAnswers, $questionIndex)
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)
renderAggregateView($aggregate)
writePostData($always=false)
{}
getAfterParticipationSuppressionQuestionPostVars()
Returns a list of postvars which will be suppressed in the form output when used in scoring adjustmen...
const CSS_CLASS_FEEDBACK_WRONG
Basic GUI class for assessment questions.
populateAnswerSpecificFormPart(\ilPropertyFormGUI $form)
getAnswerFeedbackOutput($active_id, $pass)
Returns the answer generic feedback depending on the results of the question.
getTestOutput($active_id, $pass=null, $is_postponed=false, $use_post_solutions=false, $inlineFeedback=false)
saveTaxonomyAssignments()
supportsIntermediateSolutionOutput()
Question type specific support of intermediate solution output The function getSolutionOutput respect...
outQuestionPage($a_temp_var, $a_postponed=false, $active_id="", $html="", $inlineFeedbackEnabled=false)
output question page
Multiple choice question GUI representation.
__construct(Container $dic, ilPlugin $plugin)
completeAddAnswerAction($answers, $questionIndex)
writeQuestionSpecificPostData(ilPropertyFormGUI $form)
Extracts the question specific values from $_POST and applies them to the data object.
static secureString($a_str, $a_strip_html=true, $a_allow="")
Remove unsecure tags.
Interface ilGuiAnswerScoringAdjustable.
Interface ilGuiQuestionScoringAdjustable.
__construct($id=-1)
assTextSubsetGUI constructor
aggregateAnswers($relevant_answers_chosen)
writeAnswerSpecificPostData(ilPropertyFormGUI $form)
Extracts the answer specific values from $_POST and applies them to the data object.
getAggregatedAnswersView($relevant_answers)
Returns an html string containing a question specific representation of the answers so far given in t...
addanswers()
Add a new answer.
addQuestionFormCommandButtons($form)
Add the command buttons of a question properties form.
getSpecificFeedbackOutput($userSolution)