38 "0" =>
"matrix_subtype_sr",
39 "1" =>
"matrix_subtype_mr",
46 foreach ($subtypes as $idx => $st) {
47 $subtype->addOption(
new ilRadioOption($this->lng->txt($st), $idx));
53 $header->setTitle($this->lng->txt(
"matrix_appearance"));
57 $column_separators =
new ilCheckboxInputGUI($this->lng->txt(
"matrix_column_separators"),
"column_separators");
59 $column_separators->setInfo($this->lng->txt(
"matrix_column_separators_description"));
60 $column_separators->setRequired(
false);
61 $a_form->
addItem($column_separators);
64 $row_separators =
new ilCheckboxInputGUI($this->lng->txt(
"matrix_row_separators"),
"row_separators");
66 $row_separators->setInfo($this->lng->txt(
"matrix_row_separators_description"));
67 $row_separators->setRequired(
false);
68 $a_form->
addItem($row_separators);
71 $neutral_column_separator =
new ilCheckboxInputGUI($this->lng->txt(
"matrix_neutral_column_separator"),
"neutral_column_separator");
72 $neutral_column_separator->
setValue(1);
73 $neutral_column_separator->setInfo($this->lng->txt(
"matrix_neutral_column_separator_description"));
74 $neutral_column_separator->setRequired(
false);
75 $a_form->
addItem($neutral_column_separator);
79 $header->setTitle($this->lng->txt(
"matrix_columns"));
87 $columns->setShowNeutralCategory(
true);
89 $columns->setNeutralCategoryTitle($this->lng->txt(
'matrix_neutral_answer'));
90 $columns->setCategoryText($this->lng->txt(
'matrix_standard_answers'));
96 $header->setTitle($this->lng->txt(
"matrix_column_settings"));
100 $bipolar =
new ilCustomInputGUI($this->lng->txt(
"matrix_bipolar_adjectives"));
101 $bipolar->
setInfo($this->lng->txt(
"matrix_bipolar_adjectives_description"));
104 $bipolar1 =
new ilTextInputGUI($this->lng->txt(
"matrix_left_pole"),
"bipolar1");
105 $bipolar1->setRequired(
false);
106 $bipolar->addSubItem($bipolar1);
109 $bipolar2 =
new ilTextInputGUI($this->lng->txt(
"matrix_right_pole"),
"bipolar2");
110 $bipolar2->setRequired(
false);
111 $bipolar->addSubItem($bipolar2);
117 $header->setTitle($this->lng->txt(
"matrix_rows"));
122 $rows->setRequired(
false);
123 $rows->setAllowMove(
true);
124 $rows->setLabelText($this->lng->txt(
'label'));
125 $rows->setUseOtherAnswer(
true);
130 $subtype->setValue($this->object->getSubtype());
131 $column_separators->setChecked($this->object->getColumnSeparators());
132 $row_separators->setChecked($this->object->getRowSeparators());
133 $neutral_column_separator->setChecked($this->object->getNeutralColumnSeparator());
135 if (!$this->object->getColumnCount()) {
136 $this->
object->columns->addCategory(
"");
138 $columns->setValues($this->object->getColumns());
140 $bipolar1->setValue($this->object->getBipolarAdjective(0));
141 $bipolar2->setValue($this->object->getBipolarAdjective(1));
143 if ($this->object->getRowCount() == 0) {
144 $this->
object->getRows()->addCategory(
"");
146 $rows->setValues($this->object->getRows());
151 $this->
object->setSubtype($a_form->
getInput(
"type"));
152 $this->
object->setRowSeparators($a_form->
getInput(
"row_separators") ? 1 : 0);
153 $this->
object->setColumnSeparators($a_form->
getInput(
"column_separators") ? 1 : 0);
154 $this->
object->setNeutralColumnSeparator($a_form->
getInput(
"neutral_column_separator") ? 1 : 0);
157 $this->
object->setBipolarAdjective(0, $a_form->
getInput(
"bipolar1"));
158 $this->
object->setBipolarAdjective(1, $a_form->
getInput(
"bipolar2"));
161 $this->
object->flushColumns();
163 foreach (
$_POST[
'columns'][
'answer'] as $key => $value) {
164 if (strlen($value)) {
165 $this->
object->getColumns()->addCategory($value,
$_POST[
'columns'][
'other'][$key], 0, null,
$_POST[
'columns'][
'scale'][$key]);
168 if (strlen(
$_POST[
"columns"][
"neutral"])) {
169 $this->
object->getColumns()->addCategory(
$_POST[
'columns'][
'neutral'], 0, 1, null,
$_POST[
'columns_neutral_scale']);
173 $this->
object->flushRows();
174 foreach (
$_POST[
'rows'][
'answer'] as $key => $value) {
175 if (strlen($value)) {
176 $this->
object->getRows()->addCategory($value,
$_POST[
'rows'][
'other'][$key], 0,
$_POST[
'rows'][
'label'][$key]);
181 public function getParsedAnswers(array $a_working_data = null, $a_only_user_anwers =
false)
183 if (is_array($a_working_data)) {
184 $user_answers = $a_working_data;
188 for (
$i = 0;
$i < $this->
object->getRowCount();
$i++) {
189 $rowobj = $this->
object->getRow(
$i);
194 for ($j = 0; $j < $this->
object->getColumnCount(); $j++) {
195 $cat = $this->
object->getColumn($j);
196 $value = ($cat->scale) ? ($cat->scale - 1) : $j;
198 $checked =
"unchecked";
199 if (is_array($a_working_data)) {
200 foreach ($user_answers as $user_answer) {
201 if ($user_answer[
"rowvalue"] ==
$i &&
202 $user_answer[
"value"] == $value) {
203 $checked =
"checked";
204 if ($user_answer[
"textanswer"]) {
205 $text = $user_answer[
"textanswer"];
211 if (!$a_only_user_anwers || $checked ==
"checked") {
212 $cols[$value] = array(
213 "title" => trim($cat->title)
214 ,
"neutral" => (
bool) $cat->neutral
215 ,
"checked" => $checked
220 if ($a_only_user_anwers ||
sizeof(
$cols) || $text) {
222 $options[$row_idx] = array(
223 "title" => trim($rowobj->title)
224 ,
"other" => (
bool) $rowobj->other
225 ,
"textanswer" => $text
239 public function getPrintView($question_title = 1, $show_questiontext = 1, $survey_id = null, array $a_working_data = null)
243 $layout = $this->
object->getLayout();
244 $neutralstyle =
"3px solid #808080";
245 $bordercolor =
"#808080";
246 $template =
new ilTemplate(
"tpl.il_svy_qpl_matrix_printview.html",
true,
true,
"Modules/SurveyQuestionPool");
248 if ($this->show_layout_row) {
250 $template->setCurrentBlock(
"matrix_row");
251 $template->setVariable(
"ROW", $layout_row);
252 $template->parseCurrentBlock();
255 $tplheaders =
new ilTemplate(
"tpl.il_svy_out_matrix_columnheaders.html",
true,
true,
"Modules/SurveyQuestionPool");
256 if ((strlen($this->object->getBipolarAdjective(0))) && (strlen($this->object->getBipolarAdjective(1)))) {
257 $tplheaders->setCurrentBlock(
"bipolar_start");
259 array_push($style, sprintf(
"width: %.2F%s!important", $layout[
"percent_bipolar_adjective1"],
"%"));
260 if (count($style) > 0) {
261 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
263 $tplheaders->parseCurrentBlock();
266 for (
$i = 0;
$i < $this->
object->getColumnCount();
$i++) {
267 $cat = $this->
object->getColumn(
$i);
269 $tplheaders->setCurrentBlock(
"neutral_column_header");
271 $tplheaders->setVariable(
"CLASS",
"rsep");
273 array_push($style, sprintf(
"width: %.2F%s!important", $layout[
"percent_neutral"],
"%"));
274 if ($this->object->getNeutralColumnSeparator()) {
275 array_push($style,
"border-left: $neutralstyle!important;");
277 if (count($style) > 0) {
278 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
280 $tplheaders->parseCurrentBlock();
283 if ($this->object->getColumnSeparators() == 1) {
284 if (($i < $this->object->getColumnCount() - 1)) {
285 array_push($style,
"border-right: 1px solid $bordercolor!important");
288 array_push($style, sprintf(
"width: %.2F%s!important", $layout[
"percent_columns"] / $this->object->getColumnCount(),
"%"));
289 $tplheaders->setCurrentBlock(
"column_header");
291 $tplheaders->setVariable(
"CLASS",
"center");
292 if (count($style) > 0) {
293 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
295 $tplheaders->parseCurrentBlock();
299 if ((strlen($this->object->getBipolarAdjective(0))) && (strlen($this->object->getBipolarAdjective(1)))) {
300 $tplheaders->setCurrentBlock(
"bipolar_end");
302 array_push($style, sprintf(
"width: %.2F%s!important", $layout[
"percent_bipolar_adjective2"],
"%"));
303 if (count($style) > 0) {
304 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
306 $tplheaders->parseCurrentBlock();
310 array_push($style, sprintf(
"width: %.2F%s!important", $layout[
"percent_row"],
"%"));
311 if (count($style) > 0) {
312 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
315 $template->setCurrentBlock(
"matrix_row");
316 $template->setVariable(
"ROW", $tplheaders->get());
317 $template->parseCurrentBlock();
319 $rowclass = array(
"tblrow1",
"tblrow2");
321 for (
$i = 0;
$i < $this->
object->getRowCount();
$i++) {
322 $rowobj = $this->
object->getRow(
$i);
323 $tplrow =
new ilTemplate(
"tpl.il_svy_qpl_matrix_printview_row.html",
true,
true,
"Modules/SurveyQuestionPool");
324 for ($j = 0; $j < $this->
object->getColumnCount(); $j++) {
325 $cat = $this->
object->getColumn($j);
326 if ((
$i == 0) && ($j == 0)) {
327 if ((strlen($this->object->getBipolarAdjective(0))) && (strlen($this->object->getBipolarAdjective(1)))) {
328 $tplrow->setCurrentBlock(
"bipolar_start");
330 $tplrow->setVariable(
"ROWSPAN", $this->object->getRowCount());
331 $tplrow->parseCurrentBlock();
334 if ((
$i == 0) && ($j == $this->object->getColumnCount() - 1)) {
335 if ((strlen($this->object->getBipolarAdjective(0))) && (strlen($this->object->getBipolarAdjective(1)))) {
336 $tplrow->setCurrentBlock(
"bipolar_end");
338 $tplrow->setVariable(
"ROWSPAN", $this->object->getRowCount());
339 $tplrow->parseCurrentBlock();
343 $value = ($cat->scale) ? ($cat->scale - 1) : $j;
344 $col = $options[
$i][
"cols"][$value];
346 switch ($this->object->getSubtype()) {
349 $tplrow->setCurrentBlock(
"neutral_radiobutton");
351 $tplrow->setVariable(
"ALT_RADIO", $this->lng->txt($col[
"checked"]));
352 $tplrow->setVariable(
"TITLE_RADIO", $this->lng->txt($col[
"checked"]));
353 $tplrow->parseCurrentBlock();
355 $tplrow->setCurrentBlock(
"radiobutton");
357 $tplrow->setVariable(
"ALT_RADIO", $this->lng->txt($col[
"checked"]));
358 $tplrow->setVariable(
"TITLE_RADIO", $this->lng->txt($col[
"checked"]));
359 $tplrow->parseCurrentBlock();
364 $tplrow->setCurrentBlock(
"neutral_checkbox");
366 $tplrow->setVariable(
"ALT_CHECKBOX", $this->lng->txt($col[
"checked"]));
367 $tplrow->setVariable(
"TITLE_CHECKBOX", $this->lng->txt($col[
"checked"]));
368 $tplrow->parseCurrentBlock();
370 $tplrow->setCurrentBlock(
"checkbox");
372 $tplrow->setVariable(
"ALT_CHECKBOX", $this->lng->txt($col[
"checked"]));
373 $tplrow->setVariable(
"TITLE_CHECKBOX", $this->lng->txt($col[
"checked"]));
374 $tplrow->parseCurrentBlock();
379 $tplrow->setCurrentBlock(
"neutral_answer");
381 if ($this->object->getNeutralColumnSeparator()) {
382 array_push($style,
"border-left: $neutralstyle!important");
384 if ($this->object->getColumnSeparators() == 1) {
385 if ($j < $this->object->getColumnCount() - 1) {
386 array_push($style,
"border-right: 1px solid $bordercolor!important");
390 if ($this->object->getRowSeparators() == 1) {
391 if ($i < $this->object->getRowCount() - 1) {
392 array_push($style,
"border-bottom: 1px solid $bordercolor!important");
396 $tplrow->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
398 $tplrow->parseCurrentBlock();
400 $tplrow->setCurrentBlock(
"answer");
403 if ($this->object->getColumnSeparators() == 1) {
404 if ($j < $this->object->getColumnCount() - 1) {
405 array_push($style,
"border-right: 1px solid $bordercolor!important");
409 if ($this->object->getRowSeparators() == 1) {
410 if ($i < $this->object->getRowCount() - 1) {
411 array_push($style,
"border-bottom: 1px solid $bordercolor!important");
415 $tplrow->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
417 $tplrow->parseCurrentBlock();
421 if ($rowobj->other) {
422 $text = $options[
$i][
"textanswer"];
423 $tplrow->setCurrentBlock(
"text_other");
424 $tplrow->setVariable(
"TEXT_OTHER", $text
426 :
" ");
427 $tplrow->parseCurrentBlock();
430 #force to have always the title 433 if ($question_title == 3) {
434 if (trim($rowobj->label)) {
439 $tplrow->setVariable(
"TEXT_ROW", $row_title);
440 $tplrow->setVariable(
"ROWCLASS", $rowclass[
$i % 2]);
441 if ($this->object->getRowSeparators() == 1) {
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 $ilTabs->activateTab(
"layout");
478 $this->tpl->addBlockFile(
"ADM_CONTENT",
"adm_content",
"tpl.il_svy_qpl_layout.html",
"Modules/SurveyQuestionPool");
479 $this->show_layout_row =
true;
481 $this->tpl->setVariable(
"QUESTION_OUTPUT", $question_output);
482 $this->tpl->setVariable(
"FORMACTION", $this->ctrl->getFormAction($this,
"saveLayout"));
483 $this->tpl->setVariable(
"SAVE", $this->lng->txt(
"save"));
493 $percent_values = array(
494 "percent_row" => (
int)
$_POST[
"percent_row"],
495 "percent_columns" => (
int) $_POST[
"percent_columns"],
496 "percent_bipolar_adjective1" => (
int) $_POST[
'percent_bipolar_adjective1'],
497 "percent_bipolar_adjective2" => (
int) $_POST[
'percent_bipolar_adjective2'],
498 "percent_neutral" => (
int) $_POST[
"percent_neutral"]
500 $this->
object->setLayout($percent_values);
503 if (array_sum($percent_values) == 100) {
504 $this->
object->saveLayout(
505 $percent_values[
"percent_row"],
506 $percent_values[
'percent_columns'],
507 $percent_values[
'percent_bipolar_adjective1'],
508 $percent_values[
'percent_bipolar_adjective2'],
509 $percent_values[
"percent_neutral"]
511 ilUtil::sendSuccess($this->lng->txt(
"settings_saved"));
525 $percent_values = $this->
object->getLayout();
526 $template =
new ilTemplate(
"tpl.il_svy_out_matrix_layout.html",
true,
true,
"Modules/SurveyQuestionPool");
527 if (strlen($this->object->getBipolarAdjective(0)) && strlen($this->object->getBipolarAdjective(1))) {
528 $template->setCurrentBlock(
"bipolar_start");
529 $template->setVariable(
"VALUE_PERCENT_BIPOLAR_ADJECTIVE1",
" value=\"" . $percent_values[
"percent_bipolar_adjective1"] .
"\"");
530 $template->setVariable(
"STYLE",
" style=\"width:" . $percent_values[
"percent_bipolar_adjective1"] .
"%\"");
531 $template->parseCurrentBlock();
532 $template->setCurrentBlock(
"bipolar_end");
533 $template->setVariable(
"VALUE_PERCENT_BIPOLAR_ADJECTIVE2",
" value=\"" . $percent_values[
"percent_bipolar_adjective2"] .
"\"");
534 $template->setVariable(
"STYLE",
" style=\"width:" . $percent_values[
"percent_bipolar_adjective2"] .
"%\"");
535 $template->parseCurrentBlock();
537 $counter = $this->
object->getColumnCount();
538 if (strlen($this->object->hasNeutralColumn())) {
539 $template->setCurrentBlock(
"neutral_start");
540 $template->setVariable(
"VALUE_PERCENT_NEUTRAL",
" value=\"" . $percent_values[
"percent_neutral"] .
"\"");
541 $template->setVariable(
"STYLE_NEUTRAL",
" style=\"width:" . $percent_values[
"percent_neutral"] .
"%\"");
542 $template->parseCurrentBlock();
545 $template->setVariable(
"VALUE_PERCENT_ROW",
" value=\"" . $percent_values[
"percent_row"] .
"\"");
546 $template->setVariable(
"STYLE_ROW",
" style=\"width:" . $percent_values[
"percent_row"] .
"%\"");
547 $template->setVariable(
"COLSPAN_COLUMNS", $counter);
548 $template->setVariable(
"VALUE_PERCENT_COLUMNS",
" value=\"" . $percent_values[
"percent_columns"] .
"\"");
549 $template->setVariable(
"STYLE_COLUMNS",
" style=\"width:" . $percent_values[
"percent_columns"] .
"%\"");
550 return $template->get();
563 public function getWorkingForm($working_data =
"", $question_title = 1, $show_questiontext = 1, $error_message =
"", $survey_id = null)
565 $layout = $this->
object->getLayout();
566 $neutralstyle =
"3px solid #808080";
567 $bordercolor =
"#808080";
568 $template =
new ilTemplate(
"tpl.il_svy_out_matrix.html",
true,
true,
"Modules/SurveyQuestionPool");
569 $template->setCurrentBlock(
"material_matrix");
571 $template->parseCurrentBlock();
573 if ($this->show_layout_row) {
575 $template->setCurrentBlock(
"matrix_row");
576 $template->setVariable(
"ROW", $layout_row);
577 $template->parseCurrentBlock();
580 $tplheaders =
new ilTemplate(
"tpl.il_svy_out_matrix_columnheaders.html",
true,
true,
"Modules/SurveyQuestionPool");
581 if ((strlen($this->object->getBipolarAdjective(0))) && (strlen($this->object->getBipolarAdjective(1)))) {
582 $tplheaders->setCurrentBlock(
"bipolar_start");
584 array_push($style, sprintf(
"width: %.2f%s!important", $layout[
"percent_bipolar_adjective1"],
"%"));
585 if (count($style) > 0) {
586 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
588 $tplheaders->parseCurrentBlock();
591 for (
$i = 0;
$i < $this->
object->getColumnCount();
$i++) {
593 $col = $this->
object->getColumn(
$i);
595 $tplheaders->setCurrentBlock(
"neutral_column_header");
597 $tplheaders->setVariable(
"CLASS",
"rsep");
599 array_push($style, sprintf(
"width: %.2f%s!important", $layout[
"percent_neutral"],
"%"));
600 if ($this->object->getNeutralColumnSeparator()) {
601 array_push($style,
"border-left: $neutralstyle!important;");
603 if (count($style) > 0) {
604 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
606 $tplheaders->parseCurrentBlock();
608 if ($this->object->getColumnSeparators() == 1) {
609 if (($i < $this->object->getColumnCount() - 1)) {
610 array_push($style,
"border-right: 1px solid $bordercolor!important");
613 array_push($style, sprintf(
"width: %.2f%s!important", $layout[
"percent_columns"] / $this->object->getColumnCount(),
"%"));
614 $tplheaders->setCurrentBlock(
"column_header");
616 $tplheaders->setVariable(
"CLASS",
"center");
617 if (count($style) > 0) {
618 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
620 $tplheaders->parseCurrentBlock();
623 if ((strlen($this->object->getBipolarAdjective(0))) && (strlen($this->object->getBipolarAdjective(1)))) {
624 $tplheaders->setCurrentBlock(
"bipolar_end");
626 array_push($style, sprintf(
"width: %.2f%s!important", $layout[
"percent_bipolar_adjective2"],
"%"));
627 if (count($style) > 0) {
628 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
630 $tplheaders->parseCurrentBlock();
634 array_push($style, sprintf(
"width: %.2f%s!important", $layout[
"percent_row"],
"%"));
635 if (count($style) > 0) {
636 $tplheaders->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
639 $template->setCurrentBlock(
"matrix_row");
640 $template->setVariable(
"ROW", $tplheaders->get());
641 $template->parseCurrentBlock();
643 $rowclass = array(
"tblrow1",
"tblrow2");
644 for (
$i = 0;
$i < $this->
object->getRowCount();
$i++) {
645 $rowobj = $this->
object->getRow(
$i);
646 $tplrow =
new ilTemplate(
"tpl.il_svy_out_matrix_row.html",
true,
true,
"Modules/SurveyQuestionPool");
647 for ($j = 0; $j < $this->
object->getColumnCount(); $j++) {
648 $cat = $this->
object->getColumn($j);
649 if ((
$i == 0) && ($j == 0)) {
650 if ((strlen($this->object->getBipolarAdjective(0))) && (strlen($this->object->getBipolarAdjective(1)))) {
651 $tplrow->setCurrentBlock(
"bipolar_start");
653 $tplrow->setVariable(
"ROWSPAN", $this->object->getRowCount());
654 $tplrow->parseCurrentBlock();
657 if ((
$i == 0) && ($j == $this->object->getColumnCount() - 1)) {
658 if ((strlen($this->object->getBipolarAdjective(0))) && (strlen($this->object->getBipolarAdjective(1)))) {
659 $tplrow->setCurrentBlock(
"bipolar_end");
661 $tplrow->setVariable(
"ROWSPAN", $this->object->getRowCount());
662 $tplrow->parseCurrentBlock();
665 switch ($this->object->getSubtype()) {
668 $tplrow->setCurrentBlock(
"neutral_radiobutton");
669 $tplrow->setVariable(
"QUESTION_ID", $this->object->getId());
670 $tplrow->setVariable(
"ROW",
$i);
671 $tplrow->setVariable(
"VALUE", ($cat->scale) ? ($cat->scale - 1) : $j);
672 if (is_array($working_data)) {
673 foreach ($working_data as
$data) {
674 if (($data[
"value"] == $cat->scale - 1) && ($data[
"rowvalue"] ==
$i)) {
675 $tplrow->setVariable(
"CHECKED_RADIOBUTTON",
" checked=\"checked\"");
679 $tplrow->parseCurrentBlock();
681 $tplrow->setCurrentBlock(
"radiobutton");
682 $tplrow->setVariable(
"QUESTION_ID", $this->object->getId());
683 $tplrow->setVariable(
"ROW",
$i);
684 $tplrow->setVariable(
"VALUE", ($cat->scale) ? ($cat->scale - 1) : $j);
685 if (is_array($working_data)) {
686 foreach ($working_data as
$data) {
687 if (($data[
"value"] == $cat->scale - 1) && ($data[
"rowvalue"] ==
$i)) {
688 $tplrow->setVariable(
"CHECKED_RADIOBUTTON",
" checked=\"checked\"");
692 $tplrow->parseCurrentBlock();
697 $tplrow->setCurrentBlock(
"neutral_checkbox");
698 $tplrow->setVariable(
"QUESTION_ID", $this->object->getId());
699 $tplrow->setVariable(
"ROW",
$i);
700 $tplrow->setVariable(
"VALUE", ($cat->scale) ? ($cat->scale - 1) : $j);
701 if (is_array($working_data)) {
702 foreach ($working_data as
$data) {
703 if (($data[
"value"] == $cat->scale - 1) && ($data[
"rowvalue"] ==
$i)) {
704 $tplrow->setVariable(
"CHECKED_CHECKBOX",
" checked=\"checked\"");
708 $tplrow->parseCurrentBlock();
710 $tplrow->setCurrentBlock(
"checkbox");
711 $tplrow->setVariable(
"QUESTION_ID", $this->object->getId());
712 $tplrow->setVariable(
"ROW",
$i);
713 $tplrow->setVariable(
"VALUE", ($cat->scale) ? ($cat->scale - 1) : $j);
714 if (is_array($working_data)) {
715 foreach ($working_data as
$data) {
716 if (($data[
"value"] == $cat->scale - 1) && ($data[
"rowvalue"] ==
$i)) {
717 $tplrow->setVariable(
"CHECKED_CHECKBOX",
" checked=\"checked\"");
721 $tplrow->parseCurrentBlock();
726 $tplrow->setCurrentBlock(
"neutral_answer");
728 if ($this->object->getNeutralColumnSeparator()) {
729 array_push($style,
"border-left: $neutralstyle!important");
731 if ($this->object->getColumnSeparators() == 1) {
732 if ($j < $this->object->getColumnCount() - 1) {
733 array_push($style,
"border-right: 1px solid $bordercolor!important");
737 $tplrow->setCurrentBlock(
"answer");
740 if ($this->object->getColumnSeparators() == 1) {
741 if ($j < $this->object->getColumnCount() - 1) {
742 array_push($style,
"border-right: 1px solid $bordercolor!important");
746 if ($this->object->getRowSeparators() == 1) {
747 if ($i < $this->object->getRowCount() - 1) {
748 array_push($style,
"border-bottom: 1px solid $bordercolor!important");
752 $tplrow->setVariable(
"STYLE",
" style=\"" . implode(
";", $style) .
"\"");
754 $tplrow->parseCurrentBlock();
757 if ($rowobj->other) {
758 $tplrow->setCurrentBlock(
"row_other");
759 $tplrow->setVariable(
"QUESTION_ID", $this->object->getId());
760 $tplrow->setVariable(
"ROW",
$i);
761 if (is_array($working_data)) {
762 foreach ($working_data as
$data) {
763 if ($data[
"rowvalue"] ==
$i) {
768 $tplrow->parseCurrentBlock();
771 $tplrow->setVariable(
"ROWCLASS", $rowclass[
$i % 2]);
772 if ($this->object->getRowSeparators() == 1) {
773 if ($i < $this->object->getRowCount() - 1) {
774 $tplrow->setVariable(
"STYLE",
" style=\"border-bottom: 1px solid $bordercolor!important\"");
777 $template->setCurrentBlock(
"matrix_row");
778 $template->setVariable(
"ROW", $tplrow->get());
779 $template->parseCurrentBlock();
782 if ($question_title) {
785 $template->setCurrentBlock(
"question_data_matrix");
786 if (strcmp($error_message,
"") != 0) {
787 $template->setVariable(
"ERROR_MESSAGE",
"<p class=\"warning\">$error_message</p>");
789 if ($show_questiontext) {
792 $template->parseCurrentBlock();
793 return $template->get();
setQuestionTabsForClass($guiclass)
importEditFormValues(ilPropertyFormGUI $a_form)
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
This class represents an option in a radio group.
getMaterialOutput()
Creates the HTML output of the question material(s)
outQuestionText($template)
saveLayout()
Saves the layout for the matrix question.
layout()
Creates a layout view of the question.
Matrix question GUI representation.
addFieldsToEditForm(ilPropertyFormGUI $a_form)
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
The SurveyMatrixQuestion class defines and encapsulates basic methods and attributes for matrix quest...
static getHtmlPath($relative_path)
get url of path
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
getWorkingForm($working_data="", $question_title=1, $show_questiontext=1, $error_message="", $survey_id=null)
Creates the question output form for the learner.
getLayoutRow()
Creates a row to define the matrix question layout with percentage values.
getPrintViewQuestionTitle($question_title=1)
Basic class for all survey question types.
getParsedAnswers(array $a_working_data=null, $a_only_user_anwers=false)
getPrintView($question_title=1, $show_questiontext=1, $survey_id=null, array $a_working_data=null)
Creates a HTML representation of the question.