ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
QuestionsTable.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 use ILIAS\Test\Questions\Properties\Repository as TestQuestionsRepository;
25 use ILIAS\Test\Questions\Properties\Properties as TestQuestionProperties;
33 
35 {
39  public function __construct(
40  private readonly UIFactory $ui_factory,
41  private readonly Refinery $refinery,
42  private readonly ServerRequestInterface $request,
43  private readonly QuestionsTableActions $table_actions,
44  private readonly Language $lng,
45  private readonly \ilObjTest $test_obj,
46  private readonly TestQuestionsRepository $questionrepository,
47  private readonly TitleColumnsBuilder $title_builder,
48  ) {
49  }
50 
51  public function getTableComponent(): Ordering
52  {
53  $table = $this->ui_factory->table()->ordering(
54  $this,
55  $this->table_actions->getOrderActionUrl(),
56  $this->lng->txt('list_of_questions'),
57  $this->getColumns(),
58  )
59  ->withId((string) $this->test_obj->getId())
60  ->withActions($this->table_actions->getActions())
61  ->withRequest($this->request);
62 
63  return $table;
64  }
65 
66  public function getRows(
67  OrderingRowBuilder $row_builder,
68  array $visible_column_ids
69  ): \Generator {
70  foreach ($this->getRecords() as $record) {
71  $row = $record->getAsQuestionsTableRow(
72  $this->lng,
73  $this->ui_factory,
74  $this->refinery,
75  $this->table_actions->getQuestionTargetLinkBuilder(),
76  $row_builder,
77  $this->title_builder
78  );
79  yield $this->table_actions->setDisabledActions($row, $record);
80  }
81  }
82 
83  private function getColumns(): array
84  {
85  $f = $this->ui_factory;
86  $columns = [
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')
96  ),
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),
110  ];
111 
112  return $columns;
113  }
114 
115  private function getActions(): array
116  {
117  $this->table_actions->getActions();
118  }
119 
120  private function getRecords(): \Generator
121  {
122  $records = $this->questionrepository
123  ->getQuestionPropertiesWithAggregatedResultsForTest($this->test_obj);
124  usort(
125  $records,
126  static fn(TestQuestionProperties $a, TestQuestionProperties $b): int =>
127  $a->getSequenceInformation()?->getPlaceInSequence() <=> $b->getSequenceInformation()?->getPlaceInSequence()
128  );
129  yield from $records;
130  }
131 }
__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).
Definition: Ordering.php:28
global $lng
Definition: privfeed.php:31
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples