19 declare(strict_types=1);
46 private readonly TestQuestionsRepository $questionrepository,
53 $table = $this->ui_factory->table()->ordering(
55 $this->table_actions->getOrderActionUrl(),
56 $this->
lng->txt(
'list_of_questions'),
59 ->withId((
string) $this->test_obj->getId())
60 ->withActions($this->table_actions->getActions())
61 ->withRequest($this->request);
68 array $visible_column_ids
71 $row = $record->getAsQuestionsTableRow(
75 $this->table_actions->getQuestionTargetLinkBuilder(),
79 yield $this->table_actions->setDisabledActions($row, $record);
85 $f = $this->ui_factory;
87 'question_id' =>
$f->table()->column()->text($this->
lng->txt(
'question_id'))
88 ->withIsOptional(
true,
false),
89 'title' =>
$f->table()->column()->link($this->
lng->txt(
'tst_question_title')),
90 'description' =>
$f->table()->column()->text($this->
lng->txt(
'description'))
91 ->withIsOptional(
true,
false),
92 'complete' =>
$f->table()->column()->boolean(
93 $this->
lng->txt(
'question_complete_title'),
94 $f->symbol()->icon()->custom(
'assets/images/standard/icon_checked.svg',
'',
'small'),
95 $f->symbol()->icon()->custom(
'assets/images/standard/icon_alert.svg',
'',
'small')
97 'type_tag' =>
$f->table()->column()->text($this->
lng->txt(
'tst_question_type')),
98 'points' =>
$f->table()->column()->text($this->
lng->txt(
'points')),
99 'author' =>
$f->table()->column()->text($this->
lng->txt(
'author'))
100 ->withIsOptional(
true,
false),
101 'lifecycle' =>
$f->table()->column()->text($this->
lng->txt(
'qst_lifecycle'))
102 ->withIsOptional(
true,
false),
103 'qpl' =>
$f->table()->column()->link($this->
lng->txt(
'qpl')),
104 'nr_of_answers' =>
$f->table()->column()->number($this->
lng->txt(
'number_of_answers'))
105 ->withIsOptional(
true,
false),
106 'average_points' =>
$f->table()->column()->number($this->
lng->txt(
'average_reached_points'))
107 ->withIsOptional(
true,
false),
108 'percentage_points_achieved' =>
$f->table()->column()->text($this->
lng->txt(
'percentage_points_achieved'))
109 ->withIsOptional(
true,
false),
117 $this->table_actions->getActions();
122 $records = $this->questionrepository
123 ->getQuestionPropertiesWithAggregatedResultsForTest($this->test_obj);
126 static fn(TestQuestionProperties
$a, TestQuestionProperties
$b):
int =>
127 $a->getSequenceInformation()?->getPlaceInSequence() <=> $b->getSequenceInformation()?->getPlaceInSequence()
__construct(private readonly UIFactory $ui_factory, private readonly Refinery $refinery, private readonly ServerRequestInterface $request, private readonly QuestionsTableActions $table_actions, private readonly Language $lng, private readonly \ilObjTest $test_obj, private readonly TestQuestionsRepository $questionrepository, private readonly TitleColumnsBuilder $title_builder,)
getRows(OrderingRowBuilder $row_builder, array $visible_column_ids)
This is called by the (ordering-)table to retrieve rows; map data-records to rows using the $row_buil...
This describes a Table to specify the order of its data (rows).
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples