58 $this->areas = $a_areas;
68 $this->line_color = $a_color;
78 $this->image_path = $a_path;
88 $this->image_path_web = $a_path_web;
93 if (is_array($a_areas[
'name'])) {
94 $this->areas = array();
95 foreach ($a_areas[
'name'] as $idx =>
$name) {
97 $pointsUnchecked = $a_areas[
'points_unchecked'][$idx];
99 $pointsUnchecked = 0.0;
104 $a_areas[
'points'][$idx],
106 $a_areas[
'coords'][$idx],
107 $a_areas[
'shape'][$idx],
113 $imagemap->setCoords($a_areas[
'coords'][$idx]);
114 $imagemap->setArea($a_areas[
'shape'][$idx]);
115 $imagemap->setPointsUnchecked($pointsUnchecked);
116 array_push($this->areas, $imagemap);
133 if (isset($a_value[$this->
getPostVar() .
'_name'])) {
136 if (isset($a_value[$this->
getPostVar()][
'coords'])) {
143 parent::setValue($a_value);
148 return parent::getInput();
170 $filename_arr = pathinfo($_FILES[$this->
getPostVar()][
"name"]);
171 $suffix = $filename_arr[
"extension"] ??
'';
172 $mimetype = $_FILES[$this->
getPostVar()][
"type"];
173 $size_bytes = $_FILES[$this->
getPostVar()][
"size"];
174 $temp_name = $_FILES[$this->
getPostVar()][
"tmp_name"];
175 $error = $_FILES[$this->
getPostVar()][
"error"];
180 case UPLOAD_ERR_FORM_SIZE:
181 case UPLOAD_ERR_INI_SIZE:
186 case UPLOAD_ERR_PARTIAL:
191 case UPLOAD_ERR_NO_FILE:
200 case UPLOAD_ERR_NO_TMP_DIR:
205 case UPLOAD_ERR_CANT_WRITE:
210 case UPLOAD_ERR_EXTENSION:
218 if ($_FILES[$this->
getPostVar()][
"tmp_name"] !=
"" &&
220 if (!in_array(strtolower($suffix), $this->
getSuffixes())) {
227 if ($_FILES[$this->
getPostVar()][
"tmp_name"] !=
"") {
229 if ($vir[0] ==
false) {
230 $this->
setAlert(
$lng->
txt(
"form_msg_file_virus_found") .
"<br />" . $vir[1]);
238 if (isset($post_body[
'coords']) && is_array($post_body[
'coords'][
'name'])) {
239 foreach ($post_body[
'coords'][
'name'] as $idx =>
$name) {
241 !isset($post_body[
'coords'][
'points'][$idx]) ||
242 $post_body[
'coords'][
'points'][$idx] ==
'' 248 if ((!is_numeric($post_body[
'coords'][
'points'][$idx]))) {
253 if ($post_body[
'coords'][
'points'][$idx] > 0) {
254 $max = $post_body[
'coords'][
'points'][$idx];
259 if ($max == 0 && (!
$filename) && !$_FILES[
'imagemapfile'][
'tmp_name']) {
273 $template =
new ilTemplate(
"tpl.prop_imagemap_file.html",
true,
true,
"Modules/TestQuestionPool");
279 $template->setCurrentBlock(
"has_value");
280 $template->setVariable(
"TEXT_IMAGE_NAME", $this->
getValue());
281 $template->setVariable(
"POST_VAR_D", $this->
getPostVar());
282 $template->parseCurrentBlock();
284 $template->setCurrentBlock(
"image");
292 $template->setVariable(
"SRC_IMAGE", $imagepath);
294 $template->setVariable(
"SRC_IMAGE", $this->
getImage());
296 $template->setVariable(
"ALT_IMAGE", $this->
getAlt());
297 $template->setVariable(
"POST_VAR_D", $this->
getPostVar());
298 $template->setVariable(
299 "TXT_DELETE_EXISTING",
300 $lng->
txt(
"delete_existing_file")
302 $template->setVariable(
"TEXT_ADD_RECT",
$lng->
txt(
'add_rect'));
303 $template->setVariable(
"TEXT_ADD_CIRCLE",
$lng->
txt(
'add_circle'));
304 $template->setVariable(
"TEXT_ADD_POLY",
$lng->
txt(
'add_poly'));
305 $template->parseCurrentBlock();
310 foreach ($this->
getAreas() as $area) {
311 if (strlen($area->getPoints())) {
312 $template->setCurrentBlock(
'area_points_value');
313 $template->setVariable(
'VALUE_POINTS', $area->getPoints());
314 $template->parseCurrentBlock();
317 if (strlen($area->getPointsUnchecked())) {
318 $template->setCurrentBlock(
'area_points_unchecked_value');
319 $template->setVariable(
'VALUE_POINTS_UNCHECKED', $area->getPointsUnchecked());
320 $template->parseCurrentBlock();
323 $template->setCurrentBlock(
'area_points_unchecked_field');
324 $template->parseCurrentBlock();
326 if (strlen($area->getAnswertext())) {
327 $template->setCurrentBlock(
'area_name_value');
328 $template->setVariable(
'VALUE_NAME', htmlspecialchars($area->getAnswertext()));
329 $template->parseCurrentBlock();
331 $template->setCurrentBlock(
'row');
332 $template->setVariable(
'POST_VAR_R', $this->
getPostVar());
333 $template->setVariable(
'TEXT_SHAPE', strtoupper($area->getArea()));
334 $template->setVariable(
'VALUE_SHAPE', $area->getArea());
335 $coords = preg_replace(
"/(\d+,\d+,)/",
"\$1 ", $area->getCoords());
336 $template->setVariable(
'VALUE_COORDINATES', $area->getCoords());
337 $template->setVariable(
'TEXT_COORDINATES', $coords);
338 $template->setVariable(
'COUNTER', $counter);
340 $template->parseCurrentBlock();
343 $template->setCurrentBlock(
"areas");
344 $template->setVariable(
"TEXT_NAME",
$lng->
txt(
"ass_imap_hint"));
346 $template->setVariable(
"TEXT_POINTS",
$lng->
txt(
"points_checked"));
348 $template->setCurrentBlock(
'area_points_unchecked_head');
349 $template->setVariable(
"TEXT_POINTS_UNCHECKED",
$lng->
txt(
"points_unchecked"));
350 $template->parseCurrentBlock();
352 $template->setVariable(
"TEXT_POINTS",
$lng->
txt(
"points"));
354 $template->setVariable(
"TEXT_SHAPE",
$lng->
txt(
"shape"));
355 $template->setVariable(
"TEXT_COORDINATES",
$lng->
txt(
"coordinates"));
356 $template->setVariable(
"TEXT_COMMANDS",
$lng->
txt(
"actions"));
357 $template->parseCurrentBlock();
360 $template->setVariable(
"POST_VAR", $this->
getPostVar());
361 $template->setVariable(
"ID", $this->
getFieldId());
362 $template->setVariable(
"TXT_BROWSE",
$lng->
txt(
"select_file"));
363 $template->setVariable(
"TXT_MAX_SIZE",
$lng->
txt(
"file_notice") .
" " .
367 $a_tpl->
setVariable(
"PROP_GENERIC", $template->get());
370 $this->tpl->addJavascript(
"./Services/Form/js/ServiceFormWizardInput.js");
371 $this->tpl->addJavascript(
"./Modules/TestQuestionPool/templates/default/imagemap.js");
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
static stripSlashesRecursive($a_data, bool $a_strip_html=true, string $a_allow="")
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...
static get(string $a_glyph, string $a_text="")
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static virusHandling(string $a_file, string $a_orig_name='', bool $a_clean=true)
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)
__construct(Container $dic, ilPlugin $plugin)