4 require_once
'./Modules/TestQuestionPool/classes/class.ilSingleChoiceWizardInputGUI.php';
5 require_once
'Services/UIComponent/Glyph/classes/class.ilGlyphGUI.php';
41 $this->
setSuffixes(array(
"jpg",
"jpeg",
"png",
"gif"));
44 $this->text_name =
$lng->txt(
'answer_text');
45 $this->image_name =
$lng->txt(
'answer_image');
55 $this->suffixes = $a_suffixes;
75 $this->hideImages = $a_hide;
85 $this->values = $a_values;
100 $this->text_name = $a_value;
105 $this->image_name = $a_value;
115 $this->qstObject = &$a_value;
135 $this->allowMove = $a_allow_move;
155 $this->values = array();
156 if (is_array($a_value)) {
157 if (is_array($a_value[
'answer'])) {
159 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerMatchingTerm.php";
161 array_push($this->values, $answer);
176 include_once
"./Services/AdvancedEditing/classes/class.ilObjAdvancedEditing.php";
181 if (is_array($foundvalues)) {
183 if (is_array($foundvalues[
'answer'])) {
184 foreach ($foundvalues[
'answer'] as $aidx => $answervalue) {
185 if (((strlen($answervalue)) == 0) && (strlen($foundvalues[
'imagename'][$aidx]) == 0)) {
191 if (!$this->hideImages) {
192 if (is_array($_FILES[$this->
getPostVar()][
'error'][
'image'])) {
193 foreach ($_FILES[$this->
getPostVar()][
'error'][
'image'] as
$index => $error) {
197 case UPLOAD_ERR_INI_SIZE:
198 $this->
setAlert(
$lng->txt(
"form_msg_file_size_exceeds"));
202 case UPLOAD_ERR_FORM_SIZE:
203 $this->
setAlert(
$lng->txt(
"form_msg_file_size_exceeds"));
207 case UPLOAD_ERR_PARTIAL:
208 $this->
setAlert(
$lng->txt(
"form_msg_file_partially_uploaded"));
212 case UPLOAD_ERR_NO_FILE:
214 if ((!strlen($foundvalues[
'imagename'][$index])) && (!strlen($foundvalues[
'answer'][$index]))) {
221 case UPLOAD_ERR_NO_TMP_DIR:
222 $this->
setAlert(
$lng->txt(
"form_msg_file_missing_tmp_dir"));
226 case UPLOAD_ERR_CANT_WRITE:
227 $this->
setAlert(
$lng->txt(
"form_msg_file_cannot_write_to_disk"));
231 case UPLOAD_ERR_EXTENSION:
232 $this->
setAlert(
$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(
$lng->txt(
"form_msg_file_virus_found") .
"<br />" . $vir[1]);
255 $this->
setAlert(
$lng->txt(
"form_msg_file_wrong_file_type"));
276 $tpl =
new ilTemplate(
"tpl.prop_matchingwizardinput.html",
true,
true,
"Modules/TestQuestionPool");
278 foreach ($this->values as
$value) {
279 if (!$this->hideImages) {
280 if (strlen($value->picture)) {
281 $imagename = $this->qstObject->getImagePathWeb() . $value->picture;
282 if ($this->qstObject->getThumbSize()) {
283 if (@file_exists($this->qstObject->getImagePath() . $this->qstObject->getThumbPrefix() . $value->picture)) {
284 $imagename = $this->qstObject->getImagePathWeb() . $this->qstObject->getThumbPrefix() . $value->picture;
287 $tpl->setCurrentBlock(
'image');
288 $tpl->setVariable(
'SRC_IMAGE', $imagename);
289 $tpl->setVariable(
'IMAGE_NAME', $value->picture);
291 $tpl->setVariable(
"TXT_DELETE_EXISTING",
$lng->txt(
"delete_existing_file"));
292 $tpl->setVariable(
"IMAGE_ROW_NUMBER",
$i);
294 $tpl->parseCurrentBlock();
296 $tpl->setCurrentBlock(
'addimage');
297 $tpl->setVariable(
"IMAGE_BROWSE",
$lng->txt(
'select_file'));
298 $tpl->setVariable(
"IMAGE_ID", $this->
getPostVar() .
"[image][$i]");
299 $tpl->setVariable(
"IMAGE_SUBMIT",
$lng->txt(
"upload"));
300 $tpl->setVariable(
"IMAGE_ROW_NUMBER",
$i);
302 $tpl->parseCurrentBlock();
305 if (is_object($value)) {
306 $tpl->setCurrentBlock(
"prop_text_propval");
308 $tpl->parseCurrentBlock();
313 $tpl->setVariable(
"SINGLELINE_ID", $this->
getPostVar() .
"[answer][$i]");
314 $tpl->setVariable(
"SINGLELINE_ROW_NUMBER",
$i);
318 $tpl->setVariable(
"DISABLED_SINGLELINE",
" disabled=\"disabled\"");
320 $tpl->parseCurrentBlock();
322 $tpl->setCurrentBlock(
"move");
323 $tpl->setVariable(
"CMD_UP",
"cmd[up" . $this->
getFieldId() .
"][$i]");
324 $tpl->setVariable(
"CMD_DOWN",
"cmd[down" . $this->
getFieldId() .
"][$i]");
328 $tpl->parseCurrentBlock();
330 $tpl->setCurrentBlock(
"row");
332 $tpl->setVariable(
"ROW_NUMBER",
$i + 1);
333 $tpl->setVariable(
"ROW_IDENTIFIER", $value->identifier);
335 $tpl->setVariable(
"CMD_ADD",
"cmd[add" . $this->
getFieldId() .
"][$i]");
336 $tpl->setVariable(
"CMD_REMOVE",
"cmd[remove" . $this->
getFieldId() .
"][$i]");
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();
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'));
369 $a_tpl->setCurrentBlock(
"prop_generic");
370 $a_tpl->setVariable(
"PROP_GENERIC",
$tpl->get());
371 $a_tpl->parseCurrentBlock();
376 $this->pending = $a_val;
381 return $this->pending;
Class for matching question terms.
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
getMaxLength()
Get Max Length.
static virusHandling($a_file, $a_orig_name="", $a_clean=true)
scan file for viruses and clean files if possible
static _getUsedHTMLTagsAsString($a_module="")
Returns a string of all allowed HTML tags for text editing.
static get($a_glyph, $a_text="")
Get glyph html.
setSize($a_size)
Set Size.
static stripSlashesRecursive($a_data, $a_strip_html=true, $a_allow="")
Strip slashes from array and sub-arrays.
setMaxLength($a_maxlength)
Set Max Length.
__construct(Container $dic, ilPlugin $plugin)
if($DIC->http() ->request() ->getMethod()=="GET" &&isset($DIC->http() ->request() ->getQueryParams()['tex'])) $tpl