19 declare(strict_types=1);
65 $f = $this->ui_factory->table();
70 self::COLUMN_NAME => $f->column()->text($this->
lng->txt(
'name'))->withIsSortable(
true),
71 self::COLUMN_ATTEMPT => $f->column()->number($this->
lng->txt(
'tst_attempt')),
72 self::COLUMN_POINTS_REACHED => $f->column()->number($this->
lng->txt(
'tst_reached_points'))->withIsSortable(
true),
73 self::COLUMN_POINTS_AVAILABLE => $f->column()->number($this->
lng->txt(
'tst_maximum_points'))->withIsSortable(
true),
74 self::COLUMN_FEEDBACK => $f->column()->text($this->
lng->txt(
'tst_feedback')),
75 self::COLUMN_FINALIZED => $f->column()->boolean(
76 $this->
lng->txt(
'finalized_evaluation'),
77 $this->ui_factory->symbol()->icon()->custom(
78 'assets/images/standard/icon_checked.svg',
79 $this->
lng->txt(
'yes'),
82 $this->ui_factory->symbol()->icon()->custom(
83 'assets/images/standard/icon_unchecked.svg',
84 $this->
lng->txt(
'no'),
87 )->withIsSortable(
true),
88 self::COLUMN_FINALIZED_BY => $f->column()->text($this->
lng->txt(
'finalized_by'))->withIsSortable(
true),
89 self::COLUMN_FINALIZED_ON => $f->column()->date($this->
lng->txt(
'finalized_on'), $date_format)->withIsSortable(
true)
93 self::ACTION_SCORING => $f->action()->single(
94 $this->
lng->txt(
'grade'),
95 $this->url_builder->withParameter($this->action_parameter_token, self::ACTION_SCORING),
99 )->withRequest($request);
101 return [$filter, $table];
109 $field_factory = $this->ui_factory->input()->field();
112 self::COLUMN_ATTEMPT => $field_factory->select(
113 $this->
lng->txt(
'tst_attempt'),
116 self::FILTER_FIELD_ONLY_ANSWERED => $field_factory->select(
117 $this->
lng->txt(
'tst_man_scoring_only_answered'),
119 0 => $this->
lng->txt(
'no'),
120 1 => $this->
lng->txt(
'yes')
122 )->withRequired(
true),
123 self::COLUMN_FINALIZED => $field_factory->select(
124 $this->
lng->txt(
'finalized_evaluation'),
126 0 => $this->
lng->txt(
'all_users'),
127 1 => $this->
lng->txt(
'evaluated_users'),
128 2 => $this->
lng->txt(
'not_evaluated_users')
130 )->withRequired(
true)
133 $active = array_fill(0, count($filter_inputs),
true);
135 $filter = $ui_service->
filter()->standard(
136 'scoring_by_qst_filter_id',
149 for ($i = 0;$i < $max_attempts;$i++) {
150 $attempts[$i] = $i + 1;
__construct(private readonly Language $lng, private readonly URLBuilder $url_builder, private URLBuilderToken $action_parameter_token, private URLBuilderToken $row_id_token, private readonly UIFactory $ui_factory)
getFilter(\ilUIService $ui_service, string $target_url, int $max_attempts)
const COLUMN_FINALIZED_ON
const FILTER_FIELD_ONLY_ANSWERED
buildTestAttemptsOptions(int $max_attempts)
getTable( $title, DateFormat $date_format, ServerRequestInterface $request, \ilUIService $ui_service, string $target_url, ScoringByQuestionTableBinder $data_retrieval,)
const COLUMN_FINALIZED_BY
const COLUMN_POINTS_AVAILABLE
withFilterData(array $filter_data)
const COLUMN_POINTS_REACHED