3 declare(strict_types=1);
10 $f = $DIC->ui()->factory();
11 $renderer = $DIC->ui()->renderer();
14 $actions = array(
"Alle" =>
"#",
"Mehr als 5 Antworten" =>
"#");
15 $aria_label =
"filter entries";
16 $view_controls = array(
17 $f->viewControl()->mode($actions, $aria_label)->withActive(
"Alle")
20 $mapping_closure =
function ($row, $record, $ui_factory, $environment) {
22 ->withHeadline($record[
'question_title'])
23 ->withSubheadline($record[
'question_txt'])
24 ->withImportantFields(
27 'Beantwortet: ' => $record[
'stats'][
'total'],
28 'Häufigste Antwort: ' => $record[
'answers'][$record[
'stats'][
'most_common']][
'title']
32 $ui_factory->listing()->descriptive(
34 'Werte' => $environment[
'totals']($record[
'answers']),
35 'Chart' => $environment[
'chart']($record[
'answers']),
39 ->withFurtherFieldsHeadline($record[
'type'])
42 'Beantwortet: ' => $record[
'stats'][
'total'],
43 'Übersprungen' => $record[
'stats'][
'skipped'],
44 'Häufigste Antwort: ' => $record[
'answers'][$record[
'stats'][
'most_common']][
'title'],
45 'Anzahl Häufigste: ' => $record[
'stats'][
'most_common_total'],
46 'Median: ' => $record[
'answers'][$record[
'stats'][
'median']][
'title']
49 ->withAction($ui_factory->button()->standard(
'zur Frage',
'#'));
52 $ptable =
$f->table()->presentation(
63 return $renderer->render($ptable->withData(
$data));
68 $totals =
function ($answers) {
70 $ret .=
'<tr><td></td>' 72 .
'<td style="padding-left: 10px;">Proportion</td></tr>';
74 foreach ($answers as $answer) {
76 .
'<td style="padding-right: 10px;">' . $answer[
'title'] .
'</td>' 77 .
'<td align="right">' . $answer[
'amount'] .
'</td>' 78 .
'<td align="right">' . $answer[
'proportion'] .
'%</td>' 82 $ret .=
'</table><br>';
87 $chart =
function ($answers) {
88 $ret =
'<table style="width:100%">';
89 foreach ($answers as $answer) {
90 $ret .=
'<tr style="border-bottom: 1px solid black;">' 91 .
'<td style="width: 200px;">' 94 .
'<div style="background-color:grey; height:20px; width:' . $answer[
'proportion'] .
'%;"></div>' 111 'type' =>
'Single Choice Frage',
112 'question_title' =>
'Belastbarkeit',
113 'question_txt' =>
'Wie ausgeprägt ist die Belastbarkeit des / der Auszubildenden?',
115 array(
'title' =>
'weniger ausgeprägt',
'amount' => 2,
'proportion' => 20),
116 array(
'title' =>
'teilweise ausgeprägt',
'amount' => 0,
'proportion' => 0),
117 array(
'title' =>
'ausgeprägt',
'amount' => 6,
'proportion' => 60),
118 array(
'title' =>
'deutlich ausgeprägt',
'amount' => 1,
'proportion' => 10),
119 array(
'title' =>
'stark ausgeprägt',
'amount' => 0,
'proportion' => 0),
120 array(
'title' =>
'sehr stark ausgeprägt',
'amount' => 0,
'proportion' => 0),
121 array(
'title' =>
'übermäßig ausgeprägt',
'amount' => 1,
'proportion' => 10)
127 'most_common_total' => 6,
133 'type' =>
'Single Choice Frage',
134 'question_title' =>
'Dialogfähigkeit, Kundenorientierung, Beratungsfähigkeit',
135 'question_txt' =>
'Wie ausgeprägt ist die Dialogfähigkeit, Kundenorientierung und Beratungsfähigkeit des / der Auszubildenden?',
137 array(
'title' =>
'weniger ausgeprägt',
'amount' => 0,
'proportion' => 0),
138 array(
'title' =>
'teilweise ausgeprägt',
'amount' => 1,
'proportion' => 100),
139 array(
'title' =>
'ausgeprägt',
'amount' => 0,
'proportion' => 0),
140 array(
'title' =>
'deutlich ausgeprägt',
'amount' => 0,
'proportion' => 0),
141 array(
'title' =>
'stark ausgeprägt',
'amount' => 0,
'proportion' => 0),
142 array(
'title' =>
'sehr stark ausgeprägt',
'amount' => 0,
'proportion' => 0),
143 array(
'title' =>
'übermäßig ausgeprägt',
'amount' => 0,
'proportion' => 0)
149 'most_common_total' => 1,