56 $this->glyph_factory = $DIC->ui()->factory()->symbol()->glyph();
57 $this->
renderer = $DIC->ui()->renderer();
58 $this->upload_limit = $DIC[
'ui.upload_limit_resolver'];
65 $this->text_name =
$lng->
txt(
'answer_text');
66 $this->image_name =
$lng->
txt(
'answer_image');
76 $this->suffixes = $a_suffixes;
96 $this->hideImages = $a_hide;
106 $this->values = $a_values;
121 $this->text_name = $a_value;
126 $this->image_name = $a_value;
136 $this->qstObject = &$a_value;
153 $answers = $this->forms_helper->transformArray($a_value,
'answer', $this->
refinery->kindlyTo()->string());
154 $imagename = $this->forms_helper->transformArray($a_value,
'imagename', $this->
refinery->kindlyTo()->string());
155 $identifier = $this->forms_helper->transformArray($a_value,
'identifier', $this->
refinery->kindlyTo()->int());
157 foreach ($answers as $index =>
$value) {
160 $imagename[$index] ??
'',
161 $identifier[$index] ?? 0
174 if (!is_array(
$data)) {
175 $this->
setAlert($this->
lng->txt(
'msg_input_is_required'));
180 $answers = $this->forms_helper->transformArray(
$data,
'answer', $this->
refinery->kindlyTo()->string());
181 $images = $this->forms_helper->transformArray(
$data,
'imagename', $this->
refinery->kindlyTo()->string());
182 foreach ($answers as $index =>
$value) {
185 && !$this->forms_helper->inArray($images, $index)
186 && !isset($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'][$index])
188 $this->
setAlert($this->
lng->txt(
'msg_input_is_required'));
193 if (!$this->hideImages) {
194 if (is_array($_FILES[$this->
getPostVar()][
'error'][
'image'])) {
195 foreach ($_FILES[$this->
getPostVar()][
'error'][
'image'] as $index => $error) {
199 case UPLOAD_ERR_FORM_SIZE:
200 case UPLOAD_ERR_INI_SIZE:
201 $this->
setAlert($this->
lng->txt(
'form_msg_file_size_exceeds'));
205 case UPLOAD_ERR_PARTIAL:
206 $this->
setAlert($this->
lng->txt(
'form_msg_file_partially_uploaded'));
210 case UPLOAD_ERR_NO_FILE:
212 !$this->forms_helper->inArray($images, $index)
213 && !$this->forms_helper->inArray($answers, $index)
216 $this->
setAlert($this->
lng->txt(
'form_msg_file_no_upload'));
221 case UPLOAD_ERR_NO_TMP_DIR:
222 $this->
setAlert($this->
lng->txt(
'form_msg_file_missing_tmp_dir'));
226 case UPLOAD_ERR_CANT_WRITE:
227 $this->
setAlert($this->
lng->txt(
'form_msg_file_cannot_write_to_disk'));
231 case UPLOAD_ERR_EXTENSION:
232 $this->
setAlert($this->
lng->txt(
'form_msg_file_upload_stopped_ext'));
240 if (is_array($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'])) {
241 foreach ($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'] as $index => $tmpname) {
244 $suffix = $filename_arr[
'extension'] ??
'';
247 if ($tmpname !==
'' && is_array($this->
getSuffixes())) {
249 if ($vir[0] ==
false) {
250 $this->
setAlert($this->
lng->txt(
'form_msg_file_virus_found') .
'<br />' . $vir[1]);
255 $this->
setAlert($this->
lng->txt(
'form_msg_file_wrong_file_type'));
275 $global_tpl->addJavascript(
'assets/js/matchinginput.js');
278 $tpl =
new ilTemplate(
"tpl.prop_matchingwizardinput.html",
true,
true,
"components/ILIAS/TestQuestionPool");
280 foreach ($this->values as
$value) {
281 if (!$this->hideImages) {
282 if ($value->getPicture() &&
283 file_exists($this->qstObject->getImagePath() . $value->getPicture())
285 $imagename = $this->qstObject->getImagePathWeb() . $value->getPicture();
286 if ($this->qstObject->getThumbSize()) {
287 if (file_exists($this->qstObject->getImagePath() . $this->qstObject->getThumbPrefix() . $value->getPicture())) {
288 $imagename = $this->qstObject->getImagePathWeb() . $this->qstObject->getThumbPrefix() . $value->getPicture();
292 $tpl->setCurrentBlock(
'image');
293 $tpl->setVariable(
'SRC_IMAGE', $imagename);
294 $tpl->setVariable(
'IMAGE_NAME', $value->getPicture());
296 $tpl->setVariable(
"TXT_DELETE_EXISTING",
$lng->
txt(
"delete_existing_file"));
297 $tpl->setVariable(
"IMAGE_ROW_NUMBER", $i);
298 $tpl->setVariable(
"IMAGE_POST_VAR", $this->
getPostVar());
299 $tpl->parseCurrentBlock();
301 $tpl->setCurrentBlock(
'addimage');
302 $tpl->setVariable(
"IMAGE_BROWSE",
$lng->
txt(
'select_file'));
303 $tpl->setVariable(
"IMAGE_ID", $this->
getPostVar() .
"[image][$i]");
304 $tpl->setVariable(
'MAX_SIZE_WARNING', $this->
lng->txt(
'form_msg_file_size_exceeds'));
305 $tpl->setVariable(
'MAX_SIZE', $this->upload_limit->getPhpUploadLimitInBytes());
306 $tpl->setVariable(
"IMAGE_SUBMIT",
$lng->
txt(
"upload"));
307 $tpl->setVariable(
"IMAGE_ROW_NUMBER", $i);
308 $tpl->setVariable(
"IMAGE_POST_VAR", $this->
getPostVar());
309 $tpl->parseCurrentBlock();
312 if (is_object($value)) {
313 $tpl->setCurrentBlock(
"prop_text_propval");
315 $tpl->parseCurrentBlock();
319 $tpl->setVariable(
"SIZE", $this->
getSize());
320 $tpl->setVariable(
"SINGLELINE_ID", $this->
getPostVar() .
"[answer][$i]");
321 $tpl->setVariable(
"SINGLELINE_ROW_NUMBER", $i);
322 $tpl->setVariable(
"SINGLELINE_POST_VAR", $this->
getPostVar());
325 $tpl->setVariable(
"DISABLED_SINGLELINE",
" disabled=\"disabled\"");
327 $tpl->parseCurrentBlock();
328 $tpl->setCurrentBlock(
"row");
329 $tpl->setVariable(
"POST_VAR", $this->
getPostVar());
330 $tpl->setVariable(
"ROW_NUMBER", $i + 1);
331 $tpl->setVariable(
"ROW_IDENTIFIER", $value->getIdentifier());
332 $tpl->setVariable(
"ID", $this->
getPostVar() .
"[answer][$i]");
333 $tpl->setVariable(
"ADD_BUTTON", $this->
renderer->render(
334 $this->glyph_factory->add()->withAction(
'#')
336 $tpl->setVariable(
"REMOVE_BUTTON", $this->
renderer->render(
337 $this->glyph_factory->remove()->withAction(
'#')
339 $tpl->parseCurrentBlock();
343 if (!$this->hideImages) {
345 $suff_str = $delim =
"";
347 $suff_str .= $delim .
"." .
$suffix;
350 $tpl->setCurrentBlock(
'allowed_image_suffixes');
351 $tpl->setVariable(
"TXT_ALLOWED_SUFFIXES",
$lng->
txt(
"file_allowed_suffixes") .
" " . $suff_str);
352 $tpl->parseCurrentBlock();
354 $tpl->setCurrentBlock(
"image_heading");
355 $tpl->setVariable(
"ANSWER_IMAGE", $this->image_name);
357 $tpl->parseCurrentBlock();
360 $tpl->setVariable(
"ELEMENT_ID", $this->
getPostVar());
361 $tpl->setVariable(
"TEXT_YES",
$lng->
txt(
'yes'));
362 $tpl->setVariable(
"TEXT_NO",
$lng->
txt(
'no'));
363 $tpl->setVariable(
"DELETE_IMAGE_HEADER",
$lng->
txt(
'delete_image_header'));
364 $tpl->setVariable(
"DELETE_IMAGE_QUESTION",
$lng->
txt(
'delete_image_question'));
365 $tpl->setVariable(
"ANSWER_TEXT", $this->text_name);
366 $tpl->setVariable(
"NUMBER_TEXT",
$lng->
txt(
'row'));
367 $tpl->setVariable(
"COMMANDS_TEXT",
$lng->
txt(
'actions'));
376 $this->pending = $a_val;
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
Class for matching question terms.
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...
addOnLoadCode(string $a_code, int $a_batch=2)
Add on load code.
static virusHandling(string $a_file, string $a_orig_name='', bool $a_clean=true)
This is how a factory for glyphs looks like.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setVariable($variable, $value='')
Sets a variable value.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setMaxLength(?int $a_maxlength)
__construct(Container $dic, ilPlugin $plugin)