19 declare(strict_types=1);
39 private readonly
int $question_id
52 array $visible_column_ids,
56 ?array $additional_parameters
58 if ($this->participant_data ===
null) {
63 foreach (
$data as $row) {
73 ?array $additional_parameters
75 if ($this->participant_data ===
null) {
78 return count($this->participant_data);
83 return $this->test_obj->getMaxPassOfTest();
88 $complete_feedback = $this->test_obj->getCompleteManualFeedback($question_id);
89 $data = $this->test_obj->getCompleteEvaluationData();
91 $participants =
$data->getParticipants();
92 $accessible_user_ids = call_user_func(
93 $this->participant_access_filter_factory->getScoreParticipantsUserFilter($this->test_obj->getRefId()),
96 $accessible_participants = array_filter(
102 array_keys($accessible_participants),
103 $this->
getDataRowClosure($question_id, $accessible_participants, $complete_feedback),
111 $key = key($order->
get());
112 $direction = $order->
get()[$key];
114 $this->participant_data,
115 static function (array
$a, array
$b) use ($key, $direction):
int {
116 $left = $a[$key] ??
null;
117 $right = $b[$key] ??
null;
118 if ($direction ===
'ASC') {
119 return $left <=> $right;
121 return $right <=> $left;
128 array $filtered_participants,
129 array $complete_feedback
134 ) use ($question_id, $filtered_participants, $complete_feedback): array {
138 $filtered_participants,
141 return [...$c, ...$array_of_attempts];
148 array $filtered_participants,
149 array $complete_feedback
152 $filtered_participants[$active_id]->getPasses(),
156 ) use ($question_id, $active_id, $filtered_participants, $complete_feedback): array {
158 $feedback_data = $complete_feedback[$active_id][$pd->
getPass()][$question_id] ?? [];
163 $current_participant = $filtered_participants[$active_id];
166 "{$active_id}_{$pd->getPass()}",
176 if (isset($feedback_data[
'finalized_tstamp'])
177 && $feedback_data[
'finalized_tstamp'] !== 0) {
179 '@' . $feedback_data[
'finalized_tstamp']
181 )->setTimezone($this->timezone);
193 ?array $question_info,
196 if ($this->filter_data === []) {
201 && ($question_info ===
null || $question_info[
'isAnwered'] ===
false)
205 && (!isset($feedback_data[
'finalized_evaluation']) || $feedback_data[
'finalized_evaluation'] !== 1)
207 && isset($feedback_data[
'finalized_evaluation']) && $feedback_data[
'finalized_evaluation'] === 1) {
236 if ($this->test_obj->getAnonymity()) {
237 return $this->
lng->txt(
'anonymous');
239 return $participant_data->
getName();
244 if (isset($feedback_data[
'finalized_by_usr_id'])
245 && $feedback_data[
'finalized_by_usr_id'] !==
'') {
246 return \ilObjUser::_lookupFullname($feedback_data[
'finalized_by_usr_id']);
getRows(DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, ?array $filter_data, ?array $additional_parameters)
This is called by the table to retrieve rows; map data-records to rows using the $row_builder e...
isFilteredAttempt(\ilTestEvaluationPassData $pd, ?array $question_info, array $feedback_data)
const COLUMN_FINALIZED_ON
buildFilteredArrayOfAttempts(int $question_id, int $active_id, array $filtered_participants, array $complete_feedback)
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Mainly for the purpose of pagination-support, it is important to know about the total number of recor...
const FILTER_FIELD_ONLY_ANSWERED
buildParticipantName(\ilTestEvaluationUserData $participant_data)
buildUserIdArrayFromParticipants(array $participants)
buildFinalizedByName(array $feedback_data)
Both the subject and the direction need to be specified when expressing an order. ...
buildDataRow(string $id, array $record)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const COLUMN_FINALIZED_BY
__construct(private readonly Language $lng, private readonly \DateTimeZone $timezone, private readonly \ilTestParticipantAccessFilterFactory $participant_access_filter_factory, private readonly \ilObjTest $test_obj, private readonly int $question_id)
const COLUMN_POINTS_AVAILABLE
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
getAnsweredQuestionByQuestionId(int $question_id)
A simple class to express a naive range of whole positive numbers.
withFilterData(array $filter_data)
getDataRowClosure(int $question_id, array $filtered_participants, array $complete_feedback)
const COLUMN_POINTS_REACHED
getFilteredData(int $question_id)