36 $points = $this->forms_helper->transformPoints($a_areas,
'points');
37 $points_unchecked = $this->forms_helper->transformPoints($a_areas,
'points_unchecked');
39 foreach (array_keys($this->areas) as $index) {
41 ? $points_unchecked[$index] : 0.0;
43 $this->areas[$index]->setPointsUnchecked($points_unchecked[$index]);
44 $this->areas[$index]->setPoints($points[$index]);
51 if (!is_array(
$data) || !is_array(
$data[
'coords'])) {
52 $this->
setAlert($this->
lng->txt(
'form_msg_input_is_required'));
56 $result = $this->forms_helper->checkPointsInputEnoughPositive(
$data[
'coords'], $this->
getRequired());
57 if (!is_array($result)) {
58 if ($result ===
'msg_input_is_required') {
59 $this->
setAlert($this->
lng->txt(
'form_msg_area_missing_points'));
74 $template =
new ilTemplate(
'tpl.prop_imagemapquestioncorrection_input.html',
true,
true,
'components/ILIAS/TestQuestionPool');
77 $template->setCurrentBlock(
'image');
80 foreach ($this->
getAreas() as $index => $area) {
81 $preview->addArea($index, $area->getArea(), $area->getCoords(), $area->getAnswertext(),
'',
'',
true, $this->
getLineColor());
83 $preview->createPreview();
85 $template->setVariable(
'SRC_IMAGE', $imagepath);
87 $template->setVariable(
'SRC_IMAGE', $this->
getImage());
89 $template->setVariable(
'ALT_IMAGE', $this->
getAlt());
90 $template->setVariable(
'POST_VAR_D', $this->
getPostVar());
91 $template->parseCurrentBlock();
96 foreach ($this->
getAreas() as $area) {
97 if ($area->getPoints() !==
'') {
98 $template->setCurrentBlock(
'area_points_value');
99 $template->setVariable(
'VALUE_POINTS', $area->getPoints());
100 $template->parseCurrentBlock();
103 if ($area->getPointsUnchecked() !==
'') {
104 $template->setCurrentBlock(
'area_points_unchecked_value');
105 $template->setVariable(
'VALUE_POINTS_UNCHECKED', $area->getPointsUnchecked());
106 $template->parseCurrentBlock();
109 $template->setCurrentBlock(
'area_points_unchecked_field');
110 $template->parseCurrentBlock();
112 $template->setCurrentBlock(
'row');
113 if ($area->getAnswertext() !==
'') {
114 $template->setVariable(
'ANSWER_AREA', $area->getAnswertext());
116 $template->setVariable(
'POST_VAR_R', $this->
getPostVar());
117 $template->setVariable(
'TEXT_SHAPE', strtoupper($area->getArea()));
118 $template->setVariable(
'VALUE_SHAPE', $area->getArea());
119 $coords = preg_replace(
"/(\d+,\d+,)/",
"\$1 ", $area->getCoords());
120 $template->setVariable(
'VALUE_COORDINATES', $area->getCoords());
121 $template->setVariable(
'TEXT_COORDINATES', $coords);
122 $template->setVariable(
'COUNTER', $counter);
123 $template->parseCurrentBlock();
126 $template->setCurrentBlock(
'areas');
127 $template->setVariable(
'TEXT_NAME',
$lng->
txt(
'ass_imap_hint'));
129 $template->setVariable(
'TEXT_POINTS',
$lng->
txt(
'points_checked'));
131 $template->setCurrentBlock(
'area_points_unchecked_head');
132 $template->setVariable(
'TEXT_POINTS_UNCHECKED',
$lng->
txt(
'points_unchecked'));
133 $template->parseCurrentBlock();
135 $template->setVariable(
'TEXT_POINTS',
$lng->
txt(
'points'));
137 $template->setVariable(
'TEXT_SHAPE',
$lng->
txt(
'shape'));
138 $template->setVariable(
'TEXT_COORDINATES',
$lng->
txt(
'coordinates'));
139 $template->setVariable(
'TEXT_COMMANDS',
$lng->
txt(
'actions'));
140 $template->parseCurrentBlock();
143 $template->setVariable(
'POST_VAR', $this->
getPostVar());
144 $template->setVariable(
'ID', $this->
getFieldId());
145 $template->setVariable(
'TXT_BROWSE',
$lng->
txt(
'select_file'));
146 $template->setVariable(
'TXT_MAX_SIZE',
$lng->
txt(
'file_notice') .
' ' .
150 $a_tpl->
setVariable(
'PROP_GENERIC', $template->get());
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setVariable($variable, $value='')
Sets a variable value.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)