47 "0" =>
"matrix_subtype_sr",
48 "1" =>
"matrix_subtype_mr",
55 foreach ($subtypes as $idx => $st) {
62 $header->setTitle($this->
lng->txt(
"matrix_appearance"));
66 $column_separators =
new ilCheckboxInputGUI($this->
lng->txt(
"matrix_column_separators"),
"column_separators");
68 $column_separators->setInfo($this->
lng->txt(
"matrix_column_separators_description"));
69 $column_separators->setRequired(
false);
70 $a_form->
addItem($column_separators);
75 $row_separators->setInfo($this->
lng->txt(
"matrix_row_separators_description"));
76 $row_separators->setRequired(
false);
77 $a_form->
addItem($row_separators);
80 $neutral_column_separator =
new ilCheckboxInputGUI($this->
lng->txt(
"matrix_neutral_column_separator"),
"neutral_column_separator");
81 $neutral_column_separator->
setValue(1);
82 $neutral_column_separator->setInfo($this->
lng->txt(
"matrix_neutral_column_separator_description"));
83 $neutral_column_separator->setRequired(
false);
84 $a_form->
addItem($neutral_column_separator);
88 $header->setTitle($this->
lng->txt(
"matrix_columns"));
93 $columns->setRequired(
false);
94 $columns->setAllowMove(
true);
95 $columns->setShowWizard(
true);
96 $columns->setShowNeutralCategory(
true);
97 $columns->setDisabledScale(
false);
98 $columns->setNeutralCategoryTitle($this->
lng->txt(
'matrix_neutral_answer'));
99 $columns->setCategoryText($this->
lng->txt(
'matrix_standard_answers'));
100 $columns->setShowSavePhrase(
true);
105 $header->setTitle($this->
lng->txt(
"matrix_column_settings"));
110 $bipolar->
setInfo($this->
lng->txt(
"matrix_bipolar_adjectives_description"));
114 $bipolar1->setRequired(
false);
115 $bipolar->addSubItem($bipolar1);
118 $bipolar2 =
new ilTextInputGUI($this->
lng->txt(
"matrix_right_pole"),
"bipolar2");
119 $bipolar2->setRequired(
false);
120 $bipolar->addSubItem($bipolar2);
126 $header->setTitle($this->
lng->txt(
"matrix_rows"));
131 $rows->setRequired(
false);
132 $rows->setAllowMove(
true);
133 $rows->setLabelText($this->
lng->txt(
'label'));
134 $rows->setUseOtherAnswer(
true);
139 $subtype->setValue($this->
object->getSubtype());
140 $column_separators->setChecked($this->
object->getColumnSeparators());
141 $row_separators->setChecked($this->
object->getRowSeparators());
142 $neutral_column_separator->setChecked($this->
object->getNeutralColumnSeparator());
144 if (!$this->
object->getColumnCount()) {
145 $this->
object->columns->addCategory(
"");
147 $columns->setValues($this->
object->getColumns());
149 $bipolar1->setValue($this->
object->getBipolarAdjective(0));
150 $bipolar2->setValue($this->
object->getBipolarAdjective(1));
152 if ($this->
object->getRowCount() === 0) {
153 $this->
object->getRows()->addCategory(
"");
160 $this->
object->setSubtype($a_form->
getInput(
"type"));
161 $this->
object->setRowSeparators($a_form->
getInput(
"row_separators") ? 1 : 0);
162 $this->
object->setColumnSeparators($a_form->
getInput(
"column_separators") ? 1 : 0);
163 $this->
object->setNeutralColumnSeparator($a_form->
getInput(
"neutral_column_separator") ? 1 : 0);
166 $this->
object->setBipolarAdjective(0, $a_form->
getInput(
"bipolar1"));
167 $this->
object->setBipolarAdjective(1, $a_form->
getInput(
"bipolar2"));
170 $this->
object->flushColumns();
172 $columns = $this->request->getColumns();
173 foreach ($columns[
'answer'] as
$key => $value) {
174 if (strlen($value)) {
175 $this->
object->getColumns()->addCategory($value, $columns[
'other'][
$key] ?? 0, 0, null, $columns[
'scale'][$key]);
178 if (isset($columns[
"neutral"][0]) && trim($columns[
"neutral"][0]) !==
"") {
179 $this->
object->getColumns()->addCategory(
180 $columns[
'neutral'][0],
184 $this->request->getColumnNeutralScale()
189 $this->
object->flushRows();
190 $rows = $this->request->getRows();
191 foreach (
$rows[
'answer'] as
$key => $value) {
192 if (strlen($value)) {
193 $this->
object->getRows()->addCategory($value,
$rows[
'other'][
$key] ?? 0, 0,
$rows[
'label'][$key] ?? null);
199 array $a_working_data = null,
200 bool $a_only_user_anwers =
false 202 if (is_array($a_working_data)) {
203 $user_answers = $a_working_data;
207 for (
$i = 0;
$i < $this->
object->getRowCount();
$i++) {
208 $rowobj = $this->
object->getRow(
$i);
213 for ($j = 0; $j < $this->
object->getColumnCount(); $j++) {
214 $cat = $this->
object->getColumn($j);
215 $value = ($cat->scale) ? ($cat->scale - 1) : $j;
217 $checked =
"unchecked";
218 if (is_array($a_working_data)) {
219 foreach ($user_answers as $user_answer) {
220 if ($user_answer[
"rowvalue"] ==
$i &&
221 $user_answer[
"value"] == $value) {
222 $checked =
"checked";
223 if ($user_answer[
"textanswer"]) {
224 $text = $user_answer[
"textanswer"];
230 if (!$a_only_user_anwers || $checked ===
"checked") {
231 $cols[$value] = array(
232 "title" => trim($cat->title)
233 ,
"neutral" => (
bool) $cat->neutral
234 ,
"checked" => $checked
239 if ($a_only_user_anwers || count(
$cols) || $text) {
241 $options[$row_idx] = array(
242 "title" => trim($rowobj->title)
243 ,
"other" => (
bool) $rowobj->other
244 ,
"textanswer" => $text
254 int $question_title = 1,
255 bool $show_questiontext =
true,
256 ?
int $survey_id = null,
257 ?array $working_data = null
261 $layout = $this->
object->getLayout();
262 $neutralstyle =
"3px solid #808080";
263 $bordercolor =
"#808080";
264 $template =
new ilTemplate(
"tpl.il_svy_qpl_matrix_printview.html",
true,
true,
"Modules/SurveyQuestionPool");
266 if ($this->show_layout_row) {
268 $template->setCurrentBlock(
"matrix_row");
269 $template->setVariable(
"ROW", $layout_row);
270 $template->parseCurrentBlock();
273 $tplheaders =
new ilTemplate(
"tpl.il_svy_out_matrix_columnheaders.html",
true,
true,
"Modules/SurveyQuestionPool");
274 if ($this->
object->getBipolarAdjective(0) !==
'' && $this->
object->getBipolarAdjective(1) !==
'') {
275 $tplheaders->setCurrentBlock(
"bipolar_start");
277 $style[] = sprintf(
"width: %.2F%s!important", $layout[
"percent_bipolar_adjective1"],
"%");
278 if (count($style) > 0) {
279 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
281 $tplheaders->parseCurrentBlock();
284 for (
$i = 0;
$i < $this->
object->getColumnCount();
$i++) {
285 $cat = $this->
object->getColumn(
$i);
287 $tplheaders->setCurrentBlock(
"neutral_column_header");
289 $tplheaders->setVariable(
"CLASS",
"rsep");
291 $style[] = sprintf(
"width: %.2F%s!important", $layout[
"percent_neutral"],
"%");
292 if ($this->
object->getNeutralColumnSeparator()) {
293 $style[] =
"border-left: $neutralstyle!important;";
297 if ($this->
object->getColumnSeparators()) {
298 if (($i < $this->
object->getColumnCount() - 1)) {
299 $style[] =
"border-right: 1px solid $bordercolor!important";
303 "width: %.2F%s!important",
304 $layout[
"percent_columns"] / $this->
object->getColumnCount(),
307 $tplheaders->setCurrentBlock(
"column_header");
309 $tplheaders->setVariable(
"CLASS",
"center");
311 if (count($style) > 0) {
312 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
314 $tplheaders->parseCurrentBlock();
317 if ($this->
object->getBipolarAdjective(0) !==
'' && $this->
object->getBipolarAdjective(1) !==
'') {
318 $tplheaders->setCurrentBlock(
"bipolar_end");
320 $style[] = sprintf(
"width: %.2F%s!important", $layout[
"percent_bipolar_adjective2"],
"%");
321 if (count($style) > 0) {
322 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
324 $tplheaders->parseCurrentBlock();
328 $style[] = sprintf(
"width: %.2F%s!important", $layout[
"percent_row"],
"%");
329 if (count($style) > 0) {
330 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
333 $template->setCurrentBlock(
"matrix_row");
334 $template->setVariable(
"ROW", $tplheaders->get());
335 $template->parseCurrentBlock();
337 $rowclass = array(
"tblrow1",
"tblrow2");
339 for (
$i = 0;
$i < $this->
object->getRowCount();
$i++) {
340 $rowobj = $this->
object->getRow(
$i);
341 $tplrow =
new ilTemplate(
"tpl.il_svy_qpl_matrix_printview_row.html",
true,
true,
"Modules/SurveyQuestionPool");
342 for ($j = 0; $j < $this->
object->getColumnCount(); $j++) {
343 $cat = $this->
object->getColumn($j);
344 if (
$i === 0 && $j === 0) {
345 if ($this->
object->getBipolarAdjective(0) !==
'' && $this->
object->getBipolarAdjective(1) !==
'') {
346 $tplrow->setCurrentBlock(
"bipolar_start");
347 $tplrow->setVariable(
348 "TEXT_BIPOLAR_START",
351 $tplrow->setVariable(
"ROWSPAN", $this->
object->getRowCount());
352 $tplrow->parseCurrentBlock();
355 if (
$i === 0 && $j === $this->
object->getColumnCount() - 1) {
356 if ($this->
object->getBipolarAdjective(0) !==
'' && $this->
object->getBipolarAdjective(1) !==
'') {
357 $tplrow->setCurrentBlock(
"bipolar_end");
358 $tplrow->setVariable(
362 $tplrow->setVariable(
"ROWSPAN", $this->
object->getRowCount());
363 $tplrow->parseCurrentBlock();
367 $value = ($cat->scale) ? ($cat->scale - 1) : $j;
368 $col = $options[
$i][
"cols"][$value];
370 switch ($this->
object->getSubtype()) {
373 $tplrow->setCurrentBlock(
"neutral_radiobutton");
375 $tplrow->setCurrentBlock(
"radiobutton");
378 $tplrow->setVariable(
"ALT_RADIO", $this->
lng->txt($col[
"checked"]));
379 $tplrow->setVariable(
"TITLE_RADIO", $this->
lng->txt($col[
"checked"]));
380 $tplrow->parseCurrentBlock();
384 $tplrow->setCurrentBlock(
"neutral_checkbox");
386 $tplrow->setCurrentBlock(
"checkbox");
389 $tplrow->setVariable(
"ALT_CHECKBOX", $this->
lng->txt($col[
"checked"]));
390 $tplrow->setVariable(
"TITLE_CHECKBOX", $this->
lng->txt($col[
"checked"]));
391 $tplrow->parseCurrentBlock();
395 $tplrow->setCurrentBlock(
"neutral_answer");
397 if ($this->
object->getNeutralColumnSeparator()) {
398 $style[] =
"border-left: $neutralstyle!important";
401 $tplrow->setCurrentBlock(
"answer");
404 if ($this->
object->getColumnSeparators()) {
405 if ($j < $this->
object->getColumnCount() - 1) {
406 $style[] =
"border-right: 1px solid $bordercolor!important";
409 if ($this->
object->getRowSeparators()) {
410 if ($i < $this->
object->getRowCount() - 1) {
411 $style[] =
"border-bottom: 1px solid $bordercolor!important";
415 $tplrow->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
417 $tplrow->parseCurrentBlock();
420 if ($rowobj->other) {
421 $text = $options[
$i][
"textanswer"];
422 $tplrow->setCurrentBlock(
"text_other");
423 $tplrow->setVariable(
"TEXT_OTHER", $text
424 ?:
" ");
425 $tplrow->parseCurrentBlock();
428 #force to have always the title 431 if ($question_title === 3) {
432 if (trim($rowobj->label)) {
439 $tplrow->setVariable(
"TEXT_ROW", $row_title);
440 $tplrow->setVariable(
"ROWCLASS", $rowclass[
$i % 2]);
441 if ($this->
object->getRowSeparators()) {
442 if ($i < $this->
object->getRowCount() - 1) {
443 $tplrow->setVariable(
"STYLE",
" style=\"border-bottom: 1px solid $bordercolor!important\"");
446 $template->setCurrentBlock(
"matrix_row");
447 $template->setVariable(
"ROW", $tplrow->get());
448 $template->parseCurrentBlock();
451 if ($question_title) {
454 $template->setCurrentBlock();
455 if ($show_questiontext) {
458 $template->parseCurrentBlock();
459 return $template->get();
476 $this->tpl->addBlockFile(
"ADM_CONTENT",
"adm_content",
"tpl.il_svy_qpl_layout.html",
"Modules/SurveyQuestionPool");
477 $this->show_layout_row =
true;
479 $this->tpl->setVariable(
"QUESTION_OUTPUT", $question_output);
480 $this->tpl->setVariable(
"FORMACTION", $this->
ctrl->getFormAction($this,
"saveLayout"));
481 $this->tpl->setVariable(
"SAVE", $this->
lng->txt(
"save"));
489 $percent_values = array(
490 "percent_row" => $this->request->getPercentRow(),
491 "percent_columns" => $this->request->getPercentColumns(),
492 "percent_bipolar_adjective1" => $this->request->getPercentBipAdj1(),
493 "percent_bipolar_adjective2" => $this->request->getPercentBipAdj2(),
494 "percent_neutral" => $this->request->getPercentNeutral()
496 $this->
object->setLayout($percent_values);
499 if (array_sum($percent_values) == 100) {
500 $this->
object->saveLayout(
501 $percent_values[
"percent_row"],
502 $percent_values[
'percent_columns'],
503 $percent_values[
'percent_bipolar_adjective1'],
504 $percent_values[
'percent_bipolar_adjective2'],
505 $percent_values[
"percent_neutral"]
507 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"));
509 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"svy_matrix_layout_percentages_sum_invalid"));
519 $percent_values = $this->
object->getLayout();
520 $template =
new ilTemplate(
"tpl.il_svy_out_matrix_layout.html",
true,
true,
"Modules/SurveyQuestionPool");
521 if ($this->
object->getBipolarAdjective(0) !==
'' && $this->
object->getBipolarAdjective(1) !==
'') {
522 $template->setCurrentBlock(
"bipolar_start");
523 $template->setVariable(
"VALUE_PERCENT_BIPOLAR_ADJECTIVE1",
" value=\"" . $percent_values[
"percent_bipolar_adjective1"] .
"\"");
524 $template->setVariable(
"STYLE",
" style=\"width:" . $percent_values[
"percent_bipolar_adjective1"] .
"%\"");
525 $template->parseCurrentBlock();
526 $template->setCurrentBlock(
"bipolar_end");
527 $template->setVariable(
"VALUE_PERCENT_BIPOLAR_ADJECTIVE2",
" value=\"" . $percent_values[
"percent_bipolar_adjective2"] .
"\"");
528 $template->setVariable(
"STYLE",
" style=\"width:" . $percent_values[
"percent_bipolar_adjective2"] .
"%\"");
529 $template->parseCurrentBlock();
531 $counter = $this->
object->getColumnCount();
532 if ($this->
object->hasNeutralColumn()) {
533 $template->setCurrentBlock(
"neutral_start");
534 $template->setVariable(
"VALUE_PERCENT_NEUTRAL",
" value=\"" . $percent_values[
"percent_neutral"] .
"\"");
535 $template->setVariable(
"STYLE_NEUTRAL",
" style=\"width:" . $percent_values[
"percent_neutral"] .
"%\"");
536 $template->parseCurrentBlock();
539 $template->setVariable(
"VALUE_PERCENT_ROW",
" value=\"" . $percent_values[
"percent_row"] .
"\"");
540 $template->setVariable(
"STYLE_ROW",
" style=\"width:" . $percent_values[
"percent_row"] .
"%\"");
541 $template->setVariable(
"COLSPAN_COLUMNS", $counter);
542 $template->setVariable(
"VALUE_PERCENT_COLUMNS",
" value=\"" . $percent_values[
"percent_columns"] .
"\"");
543 $template->setVariable(
"STYLE_COLUMNS",
" style=\"width:" . $percent_values[
"percent_columns"] .
"%\"");
544 return $template->get();
556 array $working_data = null,
557 int $question_title = 1,
558 bool $show_questiontext =
true,
559 string $error_message =
"",
560 int $survey_id = null,
561 bool $compress_view =
false 563 $layout = $this->
object->getLayout();
564 $neutralstyle =
"3px solid #808080";
565 $bordercolor =
"#808080";
566 $template =
new ilTemplate(
"tpl.il_svy_out_matrix.html",
true,
true,
"Modules/SurveyQuestionPool");
567 $template->setCurrentBlock(
"material_matrix");
569 $template->parseCurrentBlock();
571 if ($this->show_layout_row) {
573 $template->setCurrentBlock(
"matrix_row");
574 $template->setVariable(
"ROW", $layout_row);
575 $template->parseCurrentBlock();
578 $tplheaders =
new ilTemplate(
"tpl.il_svy_out_matrix_columnheaders.html",
true,
true,
"Modules/SurveyQuestionPool");
579 if ($this->
object->getBipolarAdjective(0) !==
'' && $this->
object->getBipolarAdjective(1) !==
'') {
580 $tplheaders->setCurrentBlock(
"bipolar_start");
582 $style[] = sprintf(
"width: %.2f%s!important", $layout[
"percent_bipolar_adjective1"],
"%");
583 if (count($style) > 0) {
584 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
586 $tplheaders->parseCurrentBlock();
589 for (
$i = 0;
$i < $this->
object->getColumnCount();
$i++) {
591 $col = $this->
object->getColumn(
$i);
593 $tplheaders->setCurrentBlock(
"neutral_column_header");
595 $tplheaders->setVariable(
"CLASS",
"rsep");
596 $style[] = sprintf(
"width: %.2f%s!important", $layout[
"percent_neutral"],
"%");
597 if ($this->
object->getNeutralColumnSeparator()) {
598 $style[] =
"border-left: $neutralstyle!important;";
601 if ($this->
object->getColumnSeparators()) {
602 if (($i < $this->
object->getColumnCount() - 1)) {
603 $style[] =
"border-right: 1px solid $bordercolor!important";
607 "width: %.2f%s!important",
608 $layout[
"percent_columns"] / $this->
object->getColumnCount(),
611 $tplheaders->setCurrentBlock(
"column_header");
613 $tplheaders->setVariable(
"CLASS",
"center");
615 if (count($style) > 0) {
616 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
618 $tplheaders->parseCurrentBlock();
620 if ($this->
object->getBipolarAdjective(0) !==
'' && $this->
object->getBipolarAdjective(1) !==
'') {
621 $tplheaders->setCurrentBlock(
"bipolar_end");
623 $style[] = sprintf(
"width: %.2f%s!important", $layout[
"percent_bipolar_adjective2"],
"%");
624 if (count($style) > 0) {
625 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
627 $tplheaders->parseCurrentBlock();
631 $style[] = sprintf(
"width: %.2f%s!important", $layout[
"percent_row"],
"%");
632 if (count($style) > 0) {
633 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
636 $template->setCurrentBlock(
"matrix_row");
637 $template->setVariable(
"ROW", $tplheaders->get());
638 $template->parseCurrentBlock();
640 $rowclass = array(
"tblrow1",
"tblrow2");
641 for (
$i = 0;
$i < $this->
object->getRowCount();
$i++) {
642 $rowobj = $this->
object->getRow(
$i);
643 $tplrow =
new ilTemplate(
"tpl.il_svy_out_matrix_row.html",
true,
true,
"Modules/SurveyQuestionPool");
644 for ($j = 0; $j < $this->
object->getColumnCount(); $j++) {
645 $cat = $this->
object->getColumn($j);
646 if (
$i === 0 && $j === 0) {
647 if ($this->
object->getBipolarAdjective(0) !==
'' && $this->
object->getBipolarAdjective(1) !==
'') {
648 $tplrow->setCurrentBlock(
"bipolar_start");
649 $tplrow->setVariable(
650 "TEXT_BIPOLAR_START",
653 $tplrow->setVariable(
"ROWSPAN", $this->
object->getRowCount());
654 $tplrow->parseCurrentBlock();
657 if (
$i === 0 && $j === $this->
object->getColumnCount() - 1) {
658 if ($this->
object->getBipolarAdjective(0) !==
'' && $this->
object->getBipolarAdjective(1) !==
'') {
659 $tplrow->setCurrentBlock(
"bipolar_end");
660 $tplrow->setVariable(
664 $tplrow->setVariable(
"ROWSPAN", $this->
object->getRowCount());
665 $tplrow->parseCurrentBlock();
668 switch ($this->
object->getSubtype()) {
671 $tplrow->setCurrentBlock(
"neutral_radiobutton");
673 $tplrow->setCurrentBlock(
"radiobutton");
675 $tplrow->setVariable(
"QUESTION_ID", $this->
object->getId());
676 $tplrow->setVariable(
"ROW",
$i);
677 $tplrow->setVariable(
"VALUE", ($cat->scale) ? ($cat->scale - 1) : $j);
678 if (is_array($working_data)) {
679 foreach ($working_data as
$data) {
680 if (($data[
"value"] == $cat->scale - 1) && ($data[
"rowvalue"] ==
$i)) {
681 $tplrow->setVariable(
"CHECKED_RADIOBUTTON",
" checked=\"checked\"");
685 $tplrow->parseCurrentBlock();
689 $tplrow->setCurrentBlock(
"neutral_checkbox");
691 $tplrow->setCurrentBlock(
"checkbox");
693 $tplrow->setVariable(
"QUESTION_ID", $this->
object->getId());
694 $tplrow->setVariable(
"ROW",
$i);
695 $tplrow->setVariable(
"VALUE", ($cat->scale) ? ($cat->scale - 1) : $j);
696 if (is_array($working_data)) {
697 foreach ($working_data as
$data) {
698 if (($data[
"value"] == $cat->scale - 1) && ($data[
"rowvalue"] ==
$i)) {
699 $tplrow->setVariable(
"CHECKED_CHECKBOX",
" checked=\"checked\"");
703 $tplrow->parseCurrentBlock();
707 $tplrow->setCurrentBlock(
"neutral_answer");
709 if ($this->
object->getNeutralColumnSeparator()) {
710 $style[] =
"border-left: $neutralstyle!important";
713 $tplrow->setCurrentBlock(
"answer");
716 if ($this->
object->getColumnSeparators()) {
717 if ($j < $this->
object->getColumnCount() - 1) {
718 $style[] =
"border-right: 1px solid $bordercolor!important";
721 if ($this->
object->getRowSeparators()) {
722 if ($i < $this->
object->getRowCount() - 1) {
723 $style[] =
"border-bottom: 1px solid $bordercolor!important";
727 $tplrow->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
729 $tplrow->parseCurrentBlock();
732 if ($rowobj->other) {
733 $tplrow->setCurrentBlock(
"row_other");
734 $tplrow->setVariable(
"QUESTION_ID", $this->
object->getId());
735 $tplrow->setVariable(
"ROW",
$i);
736 if (is_array($working_data)) {
737 foreach ($working_data as
$data) {
738 if ($data[
"rowvalue"] ==
$i) {
739 $tplrow->setVariable(
746 $tplrow->parseCurrentBlock();
749 $tplrow->setVariable(
"ROWCLASS", $rowclass[
$i % 2]);
750 if ($this->
object->getRowSeparators()) {
751 if ($i < $this->
object->getRowCount() - 1) {
752 $tplrow->setVariable(
"STYLE",
" style=\"border-bottom: 1px solid $bordercolor!important\"");
755 $template->setCurrentBlock(
"matrix_row");
756 $template->setVariable(
"ROW", $tplrow->get());
757 $template->parseCurrentBlock();
760 $template->setVariable(
764 $template->setCurrentBlock(
"question_data_matrix");
765 if (strcmp($error_message,
"") !== 0) {
766 $template->setVariable(
"ERROR_MESSAGE",
"<p class=\"warning\">$error_message</p>");
768 if ($show_questiontext) {
771 $template->parseCurrentBlock();
772 return $template->get();
importEditFormValues(ilPropertyFormGUI $a_form)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getMaterialOutput()
Creates the HTML output of the question material(s)
getQuestionTitle(int $question_title_mode=1)
getPrintViewQuestionTitle(int $question_title=1)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
saveLayout()
Saves the layout for the matrix question.
layout()
Creates a layout view of the question.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getParsedAnswers(array $a_working_data=null, bool $a_only_user_anwers=false)
getPrintView(int $question_title=1, bool $show_questiontext=true, ?int $survey_id=null, ?array $working_data=null)
outQuestionText(ilTemplate $template)
addFieldsToEditForm(ilPropertyFormGUI $a_form)
setQuestionTabsForClass(string $guiclass)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getWorkingForm(array $working_data=null, int $question_title=1, bool $show_questiontext=true, string $error_message="", int $survey_id=null, bool $compress_view=false)
Creates the question output form for the learner.
static getHtmlPath(string $relative_path)
get url of path
activateTab(string $a_id)
getLayoutRow()
Creates a row to define the matrix question layout with percentage values.
Basic class for all survey question types The SurveyQuestionGUI class defines and encapsulates basic ...