39 for ($r = 0; $r < $this->question->getRowCount(); $r++) {
44 (array) ($answers[$r] ?? []),
45 $this->question->getColumns()
49 $this->question->getRow($r)->title,
76 $tmp = array_shift($tmp);
77 $vars = $tmp[1]->getVariables();
79 foreach ($vars as $var) {
80 $res[
"cols"][] = $var->cat->title;
84 foreach ($a_results as $results_row) {
87 ++$q_counter .
". " . $results_row[0]
90 $vars = $results_row[1]->getVariables();
92 foreach ($vars as $var) {
94 ? sprintf(
"%.2f", $var->perc * 100) .
"%" 97 if ($a_abs && $a_perc) {
98 $parsed_row[] = $var->abs .
" / " . $perc;
100 $parsed_row[] = $var->abs;
102 $parsed_row[] = $perc;
107 $res[
"rows"][] = $parsed_row;
119 foreach ($a_results as $results_row) {
120 $texts = $results_row[1]->getMappedTextAnswers();
122 $idx = $results_row[0];
123 foreach ($texts as $answers) {
124 foreach ($answers as $answer) {
125 $res[$idx][] = $answer;
140 $chart->setXAxisToInteger(
true);
141 $chart->setStacked(
true);
144 $chart->setColors($colors);
149 $data = $labels = $legend = array();
151 $row_idx = count($a_results);
154 $text_shortened =
false;
155 foreach ($a_results as $row) {
158 $row_title = $row[0];
159 $row_results = $row[1];
162 $row_title = ++$row_counter .
". " . $row_title;
164 if ($labels[$row_idx] != $row_title) {
165 $text_shortened =
true;
169 $vars = $row_results->getVariables();
171 foreach ($vars as $idx => $var) {
172 if (!array_key_exists($idx,
$data)) {
174 $data[$idx]->setLabel($var->cat->title);
175 $data[$idx]->setBarOptions(0.5,
"center",
true);
176 $data[$idx]->setFill(1);
184 $data[$idx]->addPoint((
float) $var->abs, $row_idx);
190 $this->chart_height = count($a_results) * 40;
192 if ($text_shortened) {
193 $this->chart_width = 500;
195 $chart->setSize((
string) $this->chart_width, (
string) $this->chart_height);
197 foreach (
$data as $var) {
198 $chart->addData($var);
201 $chart->setTicks(
false, $labels,
true);
223 $question = $a_results[0][1]->getQuestion();
238 $row[] = (
int) $a_results[0][1]->getUsersAnswered();
239 $row[] = (
int) $a_results[0][1]->getUsersSkipped();
248 foreach ($a_results as $row_result) {
249 $row_title = $row_result[0];
250 $row_res = $row_result[1];
268 $row[] = is_array($row_res->getModeValue())
269 ? implode(
", ", $row_res->getModeValue())
270 : $row_res->getModeValue();
272 $row[] = $row_res->getModeValueAsText();
273 $row[] = (
int) $row_res->getModeNrOfSelections();
276 $row[] = $row_res->getMedianAsText();
278 $row[] = $row_res->getMean();
287 array &$a_title_row2,
293 for (
$i = 0;
$i < $this->question->getRowCount();
$i++) {
295 $row = $this->question->getRow(
$i);
297 if ($a_do_title && $a_do_label) {
298 $a_title_row[] = $row->title;
299 $a_title_row2[] = $row->label;
301 if ($this->question->getSubtype() == 0) {
302 $a_title_row[] = $row->title;
303 $a_title_row2[] = $row->label;
307 $a_title_row[] = $row->title;
308 $a_title_row2[] =
$lng->
txt(
'other');
310 } elseif ($a_do_title) {
311 $a_title_row[] = $row->title;
312 $a_title_row2[] =
"";
314 if ($this->question->getSubtype() == 0) {
315 $a_title_row[] = $row->title;
316 $a_title_row2[] =
"";
320 $a_title_row[] = $row->title;
321 $a_title_row2[] =
$lng->
txt(
'other');
324 $a_title_row[] = $row->label;
325 $a_title_row2[] =
"";
327 if ($this->question->getSubtype() == 0) {
328 $a_title_row[] = $row->label;
329 $a_title_row2[] =
"";
333 $a_title_row[] = $row->label;
334 $a_title_row2[] =
$lng->
txt(
'other');
339 if ($this->question->getSubtype() === 1) {
341 $col = $this->question->getColumn(
$index);
343 $a_title_row[] = $col->title .
" [" . $col->scale .
"]";
344 $a_title_row2[] =
"";
358 $answer_map = array();
359 foreach ($a_results as $row_results) {
360 $row_title = $row_results[0];
361 $row_result = $row_results[1];
363 $answers = $row_result->getUserResults($a_user_id);
364 if ($answers !== null) {
365 foreach ($answers as $answer) {
367 if ($this->question->getSubtype() === 1) {
368 $answer_map[$row_title .
"|" . $answer[2]] = $answer[2];
370 $answer_map[$row_title] = $answer[3];
371 $answer_map[$row_title .
"|scale"] = $answer[2];
374 $answer_map[$row_title .
"|txt"] = $answer[1];
380 if (!count($answer_map)) {
386 for (
$i = 0;
$i < $this->question->getRowCount();
$i++) {
387 $row = $this->question->getRow(
$i);
388 $row_title = $row->title;
390 $a_row[] = $answer_map[$row_title] ?? null;
391 if ($this->question->getSubtype() === 0) {
392 $a_row[] = $answer_map[$row_title .
"|scale"] ?? null;
396 $a_row[] = $answer_map[$row_title .
"|txt"] ?? null;
400 if ($this->question->getSubtype() === 1) {
402 $col = $this->question->getColumn(
$index);
403 $a_row[] = $answer_map[$row_title .
"|" . $col->scale] ?? null;
416 if ($nr_answer_records === $this->question->getRowCount()) {
getUserSpecificVariableTitles(array &$a_title_row, array &$a_title_row2, bool $a_do_title, bool $a_do_label)
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...
exportResults( $a_results, bool $a_do_title, bool $a_do_label)
getGrid( $a_results, bool $a_abs=true, bool $a_perc=true)
isSumScoreValid(int $nr_answer_records)
static _getQuestionTypeName(string $type_tag)
Return the translation for a given question type.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTextAnswers($a_results)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
parseResults(ilSurveyEvaluationResults $a_results, array $a_answers, SurveyCategories $a_categories=null)
Parse answer data into results instance.
getSkippedValue()
Get caption for skipped value.
addUserSpecificResults(array &$a_row, int $a_user_id, $a_results)
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
static getInstanceByType(int $a_type, string $a_id)