ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ScoringByQuestionTable.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
30 
32 {
33  public const ACTION_SCORING = 'getAnswerDetail';
34 
35  public const COLUMN_NAME = 'name';
36  public const COLUMN_ATTEMPT = 'attempt';
37  public const COLUMN_POINTS_REACHED = 'points_reached';
38  public const COLUMN_POINTS_AVAILABLE = 'points_available';
39  public const COLUMN_FEEDBACK = 'feedback';
40  public const COLUMN_FINALIZED = 'finalized';
41  public const COLUMN_FINALIZED_BY = 'finalized_by';
42  public const COLUMN_FINALIZED_ON = 'finalized_on';
43 
44  public const FILTER_FIELD_ONLY_ANSWERED = 'only_answered';
45 
46  public function __construct(
47  private readonly Language $lng,
48  private readonly URLBuilder $url_builder,
49  private URLBuilderToken $action_parameter_token,
50  private URLBuilderToken $row_id_token,
51  private readonly UIFactory $ui_factory
52  ) {
53  }
54 
55  public function getTable(
56  $title,
57  DateFormat $date_format,
58  ServerRequestInterface $request,
59  \ilUIService $ui_service,
60  string $target_url,
61  ScoringByQuestionTableBinder $data_retrieval,
62  ): array {
63  $filter = $this->getFilter($ui_service, $target_url, $data_retrieval->getMaxAttempts());
64 
65  $f = $this->ui_factory->table();
66  $table = $f->data(
67  $data_retrieval->withFilterData($ui_service->filter()->getData($filter) ?? []),
68  $title,
69  [
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'),
80  'small'
81  ),
82  $this->ui_factory->symbol()->icon()->custom(
83  'assets/images/standard/icon_unchecked.svg',
84  $this->lng->txt('no'),
85  'small'
86  )
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)
90  ],
91  )->withActions(
92  [
93  self::ACTION_SCORING => $f->action()->single(
94  $this->lng->txt('grade'),
95  $this->url_builder->withParameter($this->action_parameter_token, self::ACTION_SCORING),
96  $this->row_id_token
97  )->withAsync()
98  ]
99  )->withRequest($request);
100 
101  return [$filter, $table];
102  }
103 
104  private function getFilter(
105  \ilUIService $ui_service,
106  string $target_url,
107  int $max_attempts
108  ): Filter {
109  $field_factory = $this->ui_factory->input()->field();
110 
111  $filter_inputs = [
112  self::COLUMN_ATTEMPT => $field_factory->select(
113  $this->lng->txt('tst_attempt'),
114  $this->buildTestAttemptsOptions($max_attempts)
115  )->withValue(''),
116  self::FILTER_FIELD_ONLY_ANSWERED => $field_factory->select(
117  $this->lng->txt('tst_man_scoring_only_answered'),
118  [
119  0 => $this->lng->txt('no'),
120  1 => $this->lng->txt('yes')
121  ]
122  )->withRequired(true),
123  self::COLUMN_FINALIZED => $field_factory->select(
124  $this->lng->txt('finalized_evaluation'),
125  [
126  0 => $this->lng->txt('all_users'),
127  1 => $this->lng->txt('evaluated_users'),
128  2 => $this->lng->txt('not_evaluated_users')
129  ]
130  )->withRequired(true)
131  ];
132 
133  $active = array_fill(0, count($filter_inputs), true);
134 
135  $filter = $ui_service->filter()->standard(
136  'scoring_by_qst_filter_id',
137  $target_url,
138  $filter_inputs,
139  $active,
140  true,
141  true
142  );
143  return $filter;
144  }
145 
146  private function buildTestAttemptsOptions(int $max_attempts): array
147  {
148  $attempts = [];
149  for ($i = 0;$i < $max_attempts;$i++) {
150  $attempts[$i] = $i + 1;
151  }
152  return $attempts;
153  }
154 }
__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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTable( $title, DateFormat $date_format, ServerRequestInterface $request, \ilUIService $ui_service, string $target_url, ScoringByQuestionTableBinder $data_retrieval,)
A Date Format provides a format definition akin to PHP&#39;s date formatting options, but stores the sing...
Definition: DateFormat.php:26
withValue($value)
Get an input like this with another value displayed on the client side.
Definition: Group.php:61
global $lng
Definition: privfeed.php:31
URLBuilder.
Definition: URLBuilder.php:40