19 require_once
'./Modules/TestQuestionPool/classes/class.ilSingleChoiceWizardInputGUI.php';
20 require_once
'Services/UIComponent/Glyph/classes/class.ilGlyphGUI.php';
49 $this->
setSuffixes(array(
"jpg",
"jpeg",
"png",
"gif"));
52 $this->text_name =
$lng->
txt(
'answer_text');
53 $this->image_name =
$lng->
txt(
'answer_image');
63 $this->suffixes = $a_suffixes;
83 $this->hideImages = $a_hide;
93 $this->values = $a_values;
108 $this->text_name = $a_value;
113 $this->image_name = $a_value;
123 $this->qstObject = &$a_value;
143 $this->allowMove = $a_allow_move;
158 $this->values = array();
159 if (is_array($a_value)) {
160 if (is_array($a_value[
'answer'])) {
164 $a_value[
'imagename'][
$index] ??
'',
165 $a_value[
'identifier'][$index] ??
'' 167 array_push($this->values, $answer);
181 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
191 if (is_array($foundvalues)) {
193 if (is_array($foundvalues[
'answer'])) {
194 foreach ($foundvalues[
'answer'] as $aidx => $answervalue) {
195 if ($answervalue ===
'' && (
196 (!isset($foundvalues[
'imagename'][$aidx]) || $foundvalues[
'imagename'][$aidx] ===
'') &&
197 !isset($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'][$aidx])
206 if (!$this->hideImages) {
207 if (is_array($_FILES[$this->
getPostVar()][
'error'][
'image'])) {
208 foreach ($_FILES[$this->
getPostVar()][
'error'][
'image'] as
$index => $error) {
212 case UPLOAD_ERR_FORM_SIZE:
213 case UPLOAD_ERR_INI_SIZE:
218 case UPLOAD_ERR_PARTIAL:
223 case UPLOAD_ERR_NO_FILE:
225 if ((!isset($foundvalues[
'imagename'][$index]) || $foundvalues[
'imagename'][$index] ===
'') &&
226 (!isset($foundvalues[
'answer'][$index]) && $foundvalues[
'answer'][
$index] ===
'')) {
233 case UPLOAD_ERR_NO_TMP_DIR:
238 case UPLOAD_ERR_CANT_WRITE:
243 case UPLOAD_ERR_EXTENSION:
252 if (is_array($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'])) {
253 foreach ($_FILES[$this->
getPostVar()][
'tmp_name'][
'image'] as
$index => $tmpname) {
257 if (isset($filename_arr[
'extension'])) {
258 $suffix = $filename_arr[
"extension"];
262 if ($tmpname !=
'' && is_array($this->
getSuffixes())) {
264 if ($vir[0] ==
false) {
265 $this->
setAlert(
$lng->
txt(
"form_msg_file_virus_found") .
"<br />" . $vir[1]);
290 $tpl =
new ilTemplate(
"tpl.prop_matchingwizardinput.html",
true,
true,
"Modules/TestQuestionPool");
292 foreach ($this->values as
$value) {
293 if (!$this->hideImages) {
294 if (strlen($value->getPicture())) {
295 $imagename = $this->qstObject->getImagePathWeb() . $value->getPicture();
296 if ($this->qstObject->getThumbSize()) {
297 if (@file_exists($this->qstObject->getImagePath() . $this->qstObject->getThumbPrefix() . $value->getPicture())) {
298 $imagename = $this->qstObject->getImagePathWeb() . $this->qstObject->getThumbPrefix() . $value->getPicture();
301 $tpl->setCurrentBlock(
'image');
302 $tpl->setVariable(
'SRC_IMAGE', $imagename);
303 $tpl->setVariable(
'IMAGE_NAME', $value->getPicture());
305 $tpl->setVariable(
"TXT_DELETE_EXISTING",
$lng->
txt(
"delete_existing_file"));
306 $tpl->setVariable(
"IMAGE_ROW_NUMBER",
$i);
308 $tpl->parseCurrentBlock();
310 $tpl->setCurrentBlock(
'addimage');
311 $tpl->setVariable(
"IMAGE_BROWSE",
$lng->
txt(
'select_file'));
312 $tpl->setVariable(
"IMAGE_ID", $this->
getPostVar() .
"[image][$i]");
313 $tpl->setVariable(
"IMAGE_SUBMIT",
$lng->
txt(
"upload"));
314 $tpl->setVariable(
"IMAGE_ROW_NUMBER",
$i);
316 $tpl->parseCurrentBlock();
319 if (is_object($value)) {
320 $tpl->setCurrentBlock(
"prop_text_propval");
322 $tpl->parseCurrentBlock();
327 $tpl->setVariable(
"SINGLELINE_ID", $this->
getPostVar() .
"[answer][$i]");
328 $tpl->setVariable(
"SINGLELINE_ROW_NUMBER",
$i);
332 $tpl->setVariable(
"DISABLED_SINGLELINE",
" disabled=\"disabled\"");
334 $tpl->parseCurrentBlock();
336 $tpl->setCurrentBlock(
"move");
337 $tpl->setVariable(
"CMD_UP",
"cmd[up" . $this->
getFieldId() .
"][$i]");
338 $tpl->setVariable(
"CMD_DOWN",
"cmd[down" . $this->
getFieldId() .
"][$i]");
342 $tpl->parseCurrentBlock();
344 $tpl->setCurrentBlock(
"row");
346 $tpl->setVariable(
"ROW_NUMBER",
$i + 1);
347 $tpl->setVariable(
"ROW_IDENTIFIER", $value->getIdentifier());
349 $tpl->setVariable(
"CMD_ADD",
"cmd[add" . $this->
getFieldId() .
"][$i]");
350 $tpl->setVariable(
"CMD_REMOVE",
"cmd[remove" . $this->
getFieldId() .
"][$i]");
353 $tpl->parseCurrentBlock();
357 if (!$this->hideImages) {
359 $suff_str = $delim =
"";
361 $suff_str .= $delim .
"." .
$suffix;
364 $tpl->setCurrentBlock(
'allowed_image_suffixes');
365 $tpl->setVariable(
"TXT_ALLOWED_SUFFIXES",
$lng->
txt(
"file_allowed_suffixes") .
" " . $suff_str);
366 $tpl->parseCurrentBlock();
368 $tpl->setCurrentBlock(
"image_heading");
369 $tpl->setVariable(
"ANSWER_IMAGE", $this->image_name);
371 $tpl->parseCurrentBlock();
377 $tpl->setVariable(
"DELETE_IMAGE_HEADER",
$lng->
txt(
'delete_image_header'));
378 $tpl->setVariable(
"DELETE_IMAGE_QUESTION",
$lng->
txt(
'delete_image_question'));
379 $tpl->setVariable(
"ANSWER_TEXT", $this->text_name);
380 $tpl->setVariable(
"NUMBER_TEXT",
$lng->
txt(
'row'));
381 $tpl->setVariable(
"COMMANDS_TEXT",
$lng->
txt(
'actions'));
390 $this->pending = $a_val;
parseCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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="")
static virusHandling(string $a_file, string $a_orig_name='', bool $a_clean=true)
setVariable($variable, $value='')
Sets a variable value.
static _getUsedHTMLTagsAsString(string $a_module="")
Returns a string of all allowed HTML tags for text editing.
setCurrentBlock(string $part=ilGlobalTemplateInterface::DEFAULT_BLOCK)
setMaxLength(?int $a_maxlength)
__construct(Container $dic, ilPlugin $plugin)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl