ILIAS  trunk Revision v12.0_alpha-1540-g00f839d5fa1
ILIAS\Test\Participants\ParticipantTable Class Reference
+ Inheritance diagram for ILIAS\Test\Participants\ParticipantTable:
+ Collaboration diagram for ILIAS\Test\Participants\ParticipantTable:

Public Member Functions

 __construct (private readonly UIFactory $ui_factory, private readonly \ilUIService $ui_service, private readonly Language $lng, private readonly \ilTestAccess $test_access, private readonly RequestDataCollector $test_request, private readonly \ilTestParticipantAccessFilterFactory $participant_access_filter, private readonly ParticipantRepository $repository, private readonly ResultsDataFactory $results_data_factory, private readonly ResultsPresentationSettings $results_presentation_settings, private readonly \ilObjUser $current_user, private readonly \ilObjTest $test_object, private readonly ParticipantTableActions $table_actions)
 
 execute (URLBuilder $url_builder)
 
 getComponents (URLBuilder $url_builder, string $filter_url)
 
 getTotalRowCount (mixed $additional_viewcontrol_data, mixed $filter_data, mixed $additional_parameters)
 Mainly for the purpose of pagination-support, it is important to know about the total number of records available. More...
 
- Public Member Functions inherited from ILIAS\UI\Component\Table\DataRetrieval
 getRows (DataRowBuilder $row_builder, array $visible_column_ids, Range $range, Order $order, mixed $additional_viewcontrol_data, mixed $filter_data, mixed $additional_parameters)
 This is called by the table to retrieve rows; map data-records to rows using the $row_builder e.g. More...
 
 getTotalRowCount (mixed $additional_viewcontrol_data, mixed $filter_data, mixed $additional_parameters)
 Mainly for the purpose of pagination-support, it is important to know about the total number of records available. More...
 

Private Member Functions

 acquireParameters ($url_builder)
 
 getPostLoadFilters ()
 
 getPostLoadOrderFields ()
 
 getFilterComponent (string $action, ServerRequestInterface $request)
 
 getFilterFields (FieldFactory $field_factory)
 
 getTableComponent (ServerRequestInterface $request, ?array $filter)
 
 getColumns ()
 
 loadRecords (?array $filter, Order $order)
 
 buildAccessFilteredParticipantsList (array $records)
 
 getViewControlledRecords (?array $filter_data, Range $range, Order $order)
 
 filterRecords (iterable $records, ?array $filter_data)
 
 matchFilter (Participant $record, ?array $filter)
 
 orderRecords (iterable $records, Order $order)
 
 limitRecords (array $records, Range $range)
 

Private Attributes

const ID = 'pt'
 
iterable $records = null
 
bool $scoring_enabled = false
 

Detailed Description

Definition at line 39 of file ParticipantTable.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Test\Participants\ParticipantTable::__construct ( private readonly UIFactory  $ui_factory,
private readonly \ilUIService  $ui_service,
private readonly Language  $lng,
private readonly \ilTestAccess  $test_access,
private readonly RequestDataCollector  $test_request,
private readonly \ilTestParticipantAccessFilterFactory  $participant_access_filter,
private readonly ParticipantRepository  $repository,
private readonly ResultsDataFactory  $results_data_factory,
private readonly ResultsPresentationSettings  $results_presentation_settings,
private readonly \ilObjUser  $current_user,
private readonly \ilObjTest  $test_object,
private readonly ParticipantTableActions  $table_actions 
)

Definition at line 45 of file ParticipantTable.php.

58 {
59 $this->scoring_enabled = $this->test_object->getGlobalSettings()->isManualScoringEnabled();
60 }

Member Function Documentation

◆ acquireParameters()

ILIAS\Test\Participants\ParticipantTable::acquireParameters (   $url_builder)
private

◆ buildAccessFilteredParticipantsList()

ILIAS\Test\Participants\ParticipantTable::buildAccessFilteredParticipantsList ( array  $records)
private
Parameters
array<Participant>$records
Returns
array<int>

Definition at line 503 of file ParticipantTable.php.

503 : array
504 {
505 $manage_access_filter = $this->participant_access_filter
506 ->getManageParticipantsUserFilter($this->test_object->getRefId());
507 $access_results_access_filter = $this->participant_access_filter
508 ->getAccessResultsUserFilter($this->test_object->getRefId());
509 $participant_ids = array_map(
510 fn(Participant $participant) => $participant->getUserId(),
512 );
513 return $manage_access_filter($participant_ids) + $access_results_access_filter($participant_ids);
514 }

References ILIAS\Test\Participants\Participant\getUserId().

+ Here is the call graph for this function:

◆ execute()

ILIAS\Test\Participants\ParticipantTable::execute ( URLBuilder  $url_builder)

Definition at line 62 of file ParticipantTable.php.

62 : ?Modal
63 {
64 return $this->table_actions->execute(...$this->acquireParameters($url_builder));
65 }

References ILIAS\Test\Participants\ParticipantTable\acquireParameters().

+ Here is the call graph for this function:

◆ filterRecords()

ILIAS\Test\Participants\ParticipantTable::filterRecords ( iterable  $records,
?array  $filter_data 
)
private

Definition at line 538 of file ParticipantTable.php.

538 : iterable
539 {
540 foreach ($records as $record) {
541 if ($this->matchFilter($record, $filter_data)) {
542 yield $record;
543 }
544 }
545 }
matchFilter(Participant $record, ?array $filter)

◆ getColumns()

ILIAS\Test\Participants\ParticipantTable::getColumns ( )
private
Returns
array<string, Column>

Definition at line 363 of file ParticipantTable.php.

363 : array
364 {
365 $column_factory = $this->ui_factory->table()->column();
366
367 $columns = [
368 'name' => $column_factory->text($this->lng->txt('name'))
369 ->withIsSortable(!$this->test_object->getAnonymity())
370 ];
371
372 if (!$this->test_object->getAnonymity()) {
373 $columns += [
374 'login' => $column_factory->text($this->lng->txt('login'))->withIsSortable(true),
375 'matriculation' => $column_factory->text($this->lng->txt('matriculation'))
376 ->withIsOptional(true, false)
377 ->withIsSortable(true)
378 ];
379 }
380
381 $columns += [
382 'ip_range' => $column_factory->text($this->lng->txt('client_ip_range'))
383 ->withIsOptional(true, false)
384 ->withIsSortable(true),
385 'attempt_started_at' => $column_factory->date(
386 $this->lng->txt('tst_attempt_started'),
387 $this->current_user->getDateTimeFormat()
388 )->withIsSortable(true),
389 'total_time_on_task' => $column_factory->text($this->lng->txt('working_time'))
390 ->withIsOptional(true, false),
391 'total_attempts' => $column_factory->number($this->lng->txt('total_attempts'))
392 ->withIsOptional(true, false)
393 ->withIsSortable(true),
394 ];
395
396 $columns['status_of_attempt'] = $column_factory->text($this->lng->txt('status_of_attempt'))
397 ->withIsSortable(true);
398
399 if ($this->test_object->getEnableProcessingTime()) {
400 $columns['remaining_duration'] = $column_factory->text($this->lng->txt('remaining_duration'))
401 ->withIsOptional(true);
402 $columns['total_duration'] = $column_factory->text($this->lng->txt('total_duration'))
403 ->withIsOptional(true, false);
404 $columns['extra_time'] = $column_factory->text($this->lng->txt('extratime'))
405 ->withIsOptional(true, false);
406 }
407
408 if ($this->test_object->getMainSettings()->getTestBehaviourSettings()->getExamIdInTestAttemptEnabled()) {
409 $columns['id_of_attempt'] = $column_factory->text($this->lng->txt('exam_id_of_attempt'))
410 ->withIsOptional(true, false)
411 ->withIsSortable(true);
412 }
413
414 if ($this->test_access->checkParticipantsResultsAccess()) {
415 $columns['reached_points'] = $column_factory->text($this->lng->txt('tst_reached_points'))
416 ->withIsSortable(true)
417 ->withOrderingLabels(...$column_factory->number($this->lng->txt('tst_reached_points'))->getOrderingLabels());
418 $columns['nr_of_answered_questions'] = $column_factory->text($this->lng->txt('tst_answered_questions'))
419 ->withIsOptional(true, false)
420 ->withIsSortable(true)
421 ->withOrderingLabels(...$column_factory->number($this->lng->txt('tst_answered_questions'))->getOrderingLabels());
422 $columns['percent_of_available_points'] = $column_factory->number($this->lng->txt('tst_percent_solved'))
423 ->withUnit('%')
424 ->withIsOptional(true, false)
425 ->withIsSortable(true);
426 $columns['test_passed'] = $column_factory->boolean(
427 $this->lng->txt('tst_passed'),
428 $this->ui_factory->symbol()->icon()->custom(
429 'assets/images/standard/icon_checked.svg',
430 $this->lng->txt('yes'),
431 'small'
432 ),
433 $this->ui_factory->symbol()->icon()->custom(
434 'assets/images/standard/icon_unchecked.svg',
435 $this->lng->txt('no'),
436 'small'
437 )
438 )->withIsSortable(true)
439 ->withOrderingLabels(
440 "{$this->lng->txt('tst_passed')}, {$this->lng->txt('no')} {$this->lng->txt('order_option_first')}",
441 "{$this->lng->txt('tst_passed')}, {$this->lng->txt('yes')} {$this->lng->txt('order_option_first')}"
442 );
443 $columns['mark'] = $column_factory->text($this->lng->txt('tst_mark'))
444 ->withIsOptional(true, false)
445 ->withIsSortable(true);
446 }
447 if ($this->scoring_enabled) {
448 $columns['scoring_finalized'] = $column_factory->boolean(
449 $this->lng->txt('finalized_evaluation'),
450 $this->ui_factory->symbol()->icon()->custom(
451 'assets/images/standard/icon_checked.svg',
452 $this->lng->txt('yes'),
453 'small'
454 ),
455 $this->ui_factory->symbol()->icon()->custom(
456 'assets/images/standard/icon_unchecked.svg',
457 $this->lng->txt('no'),
458 'small'
459 )
460 )->withIsOptional(true, false)
461 ->withIsSortable(true);
462 }
463
464 $columns['last_access'] = $column_factory->date(
465 $this->lng->txt('last_access'),
466 $this->current_user->getDateTimeFormat()
467 );
468
469 return $columns;
470 }

References ILIAS\Repository\lng().

+ Here is the call graph for this function:

◆ getComponents()

ILIAS\Test\Participants\ParticipantTable::getComponents ( URLBuilder  $url_builder,
string  $filter_url 
)
Returns
array<Component>

Definition at line 70 of file ParticipantTable.php.

70 : array
71 {
72 $filter = $this->getFilterComponent($filter_url, $this->test_request->getRequest());
73 $table = $this->getTableComponent(
74 $this->test_request->getRequest(),
75 $this->ui_service->filter()->getData($filter)
76 );
77
78 return [
79 $filter,
80 $table->withActions($this->table_actions->getEnabledActions(...$this->acquireParameters($url_builder)))
81 ];
82 }
getFilterComponent(string $action, ServerRequestInterface $request)
getTableComponent(ServerRequestInterface $request, ?array $filter)

References ILIAS\Test\Participants\ParticipantTable\getFilterComponent(), and ILIAS\Test\Participants\ParticipantTable\getTableComponent().

+ Here is the call graph for this function:

◆ getFilterComponent()

ILIAS\Test\Participants\ParticipantTable::getFilterComponent ( string  $action,
ServerRequestInterface  $request 
)
private

Definition at line 268 of file ParticipantTable.php.

268 : FilterComponent
269 {
270 $filter_inputs = [];
271 $is_input_initially_rendered = [];
272 $field_factory = $this->ui_factory->input()->field();
273
274 foreach ($this->getFilterFields($field_factory) as $filter_id => $filter) {
275 [$filter_inputs[$filter_id], $is_input_initially_rendered[$filter_id]] = $filter;
276 }
277
278 return $this->ui_service->filter()->standard(
279 "participant_filter_{$this->test_request->getRefId()}",
280 $action,
281 $filter_inputs,
282 $is_input_initially_rendered,
283 true,
284 true
285 );
286 }
getFilterFields(FieldFactory $field_factory)

Referenced by ILIAS\Test\Participants\ParticipantTable\getComponents().

+ Here is the caller graph for this function:

◆ getFilterFields()

ILIAS\Test\Participants\ParticipantTable::getFilterFields ( FieldFactory  $field_factory)
private
Parameters
FieldFactory$field_factory
Returns
array<string, FilterInput>

Definition at line 293 of file ParticipantTable.php.

293 : array
294 {
295 $yes_no_all_options = [
296 'true' => $this->lng->txt('yes'),
297 'false' => $this->lng->txt('no')
298 ];
299
300 $solution_options = [
301 'false' => $this->lng->txt('without_solution'),
302 'true' => $this->lng->txt('with_solution')
303 ];
304
305 $status_of_attempt_options = [
306 StatusOfAttempt::NOT_YET_STARTED->value => $this->lng->txt(StatusOfAttempt::NOT_YET_STARTED->value),
307 StatusOfAttempt::RUNNING->value => $this->lng->txt(StatusOfAttempt::RUNNING->value),
308 StatusOfAttempt::FINISHED_BY_UNKNOWN->value => $this->lng->txt(StatusOfAttempt::FINISHED_BY_UNKNOWN->value),
309 StatusOfAttempt::FINISHED_BY_ADMINISTRATOR->value => $this->lng->txt(StatusOfAttempt::FINISHED_BY_ADMINISTRATOR->value),
310 StatusOfAttempt::FINISHED_BY_CRONJOB->value => $this->lng->txt(StatusOfAttempt::FINISHED_BY_CRONJOB->value),
311 StatusOfAttempt::FINISHED_BY_DURATION->value => $this->lng->txt(StatusOfAttempt::FINISHED_BY_DURATION->value),
312 StatusOfAttempt::FINISHED_BY_PARTICIPANT->value => $this->lng->txt(StatusOfAttempt::FINISHED_BY_PARTICIPANT->value),
313 ];
314
315 $filters = [
316 'name' => [$field_factory->text($this->lng->txt('name')), true],
317 'login' => [$field_factory->text($this->lng->txt('login')), true],
318 'ip_range' => [$field_factory->text($this->lng->txt('client_ip_range')), true],
319 'solution' => [$field_factory->select($this->lng->txt('solutions'), $solution_options), true],
320 ];
321
322 if ($this->test_object->getEnableProcessingTime()) {
323 $filters['extra_time'] = [$field_factory->select($this->lng->txt('extratime'), $yes_no_all_options), true];
324 }
325
326 $filters['status_of_attempt'] = [
327 $field_factory->select($this->lng->txt('status_of_attempt'), $status_of_attempt_options),
328 true
329 ];
330
331 $filters['test_passed'] = [
332 $field_factory->select($this->lng->txt('tst_passed'), $yes_no_all_options),
333 true
334 ];
335
336 if ($this->scoring_enabled) {
337 $filters['scoring_finalized'] = [
338 $field_factory->select($this->lng->txt('finalized_evaluation'), $yes_no_all_options),
339 true
340 ];
341 }
342
343 return $filters;
344 }
return true

References ILIAS\Repository\lng(), and true.

+ Here is the call graph for this function:

◆ getPostLoadFilters()

ILIAS\Test\Participants\ParticipantTable::getPostLoadFilters ( )
private
Returns
array<string, \Closure>

Definition at line 185 of file ParticipantTable.php.

185 : array
186 {
187 return [
188 'solution' => fn(string $value, Participant $record) =>
189 $value === 'true' ? $record->hasAnsweredQuestionsForScoredAttempt() : !$record->hasAnsweredQuestionsForScoredAttempt(),
190 'status_of_attempt' => fn(string $value, Participant $record) =>
191 ($value === StatusOfAttempt::NOT_YET_STARTED->value && $record->getAttemptOverviewInformation()?->getStatusOfAttempt() === null) ||
192 $value === $record->getAttemptOverviewInformation()?->getStatusOfAttempt()->value,
193 'test_passed' => fn(string $value, Participant $record) => $value === 'true'
194 ? $record->getAttemptOverviewInformation()?->hasPassingMark() === true
195 : $record->getAttemptOverviewInformation()?->hasPassingMark() !== true,
196 'scoring_finalized' => fn(string $value, Participant $record) => $value === 'true'
197 ? $record->isScoringFinalized() == true
198 : $record->isScoringFinalized() === false
199 ];
200 }

References ILIAS\Test\Participants\Participant\getAttemptOverviewInformation(), ILIAS\Test\Participants\Participant\hasAnsweredQuestionsForScoredAttempt(), ILIAS\Test\Participants\Participant\isScoringFinalized(), and true.

+ Here is the call graph for this function:

◆ getPostLoadOrderFields()

ILIAS\Test\Participants\ParticipantTable::getPostLoadOrderFields ( )
private
Returns
array<string, \Closure>

Definition at line 205 of file ParticipantTable.php.

205 : array
206 {
207 $processing_time = $this->test_object->getProcessingTimeInSeconds();
208 $reset_time_on_new_attempt = $this->test_object->getResetProcessingTime();
209
210 return [
211 'attempt_started_at' => static fn(Participant $a, Participant $b) => $a->getFirstAccess() <=> $b->getFirstAccess(),
212 'total_duration' => static fn(
215 ) => $a->getTotalDuration($processing_time) <=> $b->getTotalDuration($processing_time),
216 'remaining_duration' => static fn(
219 ) => $a->getRemainingDuration($processing_time, $reset_time_on_new_attempt)
220 <=> $b->getRemainingDuration($processing_time, $reset_time_on_new_attempt),
221 'last_access' => static fn(Participant $a, Participant $b) => $a->getLastAccess() <=> $b->getLastAccess(),
222 'status_of_attempt' => fn(
225 ) => strcmp(
226 $a->getAttemptOverviewInformation()?->getStatusOfAttempt()?->getTranslation($this->lng) ?? StatusOfAttempt::NOT_YET_STARTED->getTranslation($this->lng),
227 $b->getAttemptOverviewInformation()?->getStatusOfAttempt()?->getTranslation($this->lng) ?? StatusOfAttempt::NOT_YET_STARTED->getTranslation($this->lng)
228 ),
229 'reached_points' => static fn(
232 ) => $a->getAttemptOverviewInformation()?->getReachedPoints()
233 <=> $b->getAttemptOverviewInformation()?->getReachedPoints(),
234 'nr_of_answered_questions' => static fn(
237 ) => $a->getAttemptOverviewInformation()?->getNrOfAnsweredQuestions()
238 <=> $b->getAttemptOverviewInformation()?->getNrOfAnsweredQuestions(),
239 'percent_of_available_points' => static fn(
242 ) => $a->getAttemptOverviewInformation()?->getReachedPointsInPercent()
243 <=> $b->getAttemptOverviewInformation()?->getReachedPointsInPercent(),
244 'test_passed' => static fn(
247 ) => $a->getAttemptOverviewInformation()?->hasPassingMark()
248 <=> $b->getAttemptOverviewInformation()?->hasPassingMark(),
249 'mark' => static fn(
252 ) => $a->getAttemptOverviewInformation()?->getMark() <=> $b->getAttemptOverviewInformation()?->getMark(),
253 'matriculation' => static fn(
256 ) => $a->getMatriculation() <=> $b->getMatriculation(),
257 'id_of_attempt' => static fn(
260 ) => $a->getAttemptOverviewInformation()?->getExamId() <=> $b->getAttemptOverviewInformation()?->getExamId(),
261 'total_time_on_task' => static fn(
264 ) => $a->getAttemptOverviewInformation()?->getTotalTimeOnTask() <=> $b->getAttemptOverviewInformation()?->getTotalTimeOnTask()
265 ];
266 }
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples

References Vendor\Package\$a, and Vendor\Package\$b.

◆ getTableComponent()

ILIAS\Test\Participants\ParticipantTable::getTableComponent ( ServerRequestInterface  $request,
?array  $filter 
)
private

Definition at line 346 of file ParticipantTable.php.

347 {
348 return $this->ui_factory
349 ->table()
350 ->data(
351 $this,
352 $this->lng->txt('list_of_participants'),
353 $this->getColumns(),
354 )
355 ->withId(self::ID)
356 ->withRequest($request)
357 ->withFilter($filter);
358 }

References ILIAS\Repository\lng().

Referenced by ILIAS\Test\Participants\ParticipantTable\getComponents().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getTotalRowCount()

ILIAS\Test\Participants\ParticipantTable::getTotalRowCount ( mixed  $additional_viewcontrol_data,
mixed  $filter_data,
mixed  $additional_parameters 
)

Mainly for the purpose of pagination-support, it is important to know about the total number of records available.

Given the nature of a DataTable, which is, opposite to a PresentationTable, rather administrative than explorative, this information will increase user experience quite a bit. However, you may return null, if the call is to costly, but expect the View Control to look a little different in this case.

Make sure that potential filters or user restrictions are being applied to the count.

Implements ILIAS\UI\Component\Table\DataRetrieval.

Definition at line 84 of file ParticipantTable.php.

88 : ?int {
89 return $this->repository->countParticipants($this->test_object->getTestId(), $filter_data);
90 }

◆ getViewControlledRecords()

ILIAS\Test\Participants\ParticipantTable::getViewControlledRecords ( ?array  $filter_data,
Range  $range,
Order  $order 
)
private
Returns
iterable<Participant>

Definition at line 520 of file ParticipantTable.php.

520 : iterable
521 {
522 return $this->limitRecords(
523 $this->orderRecords(
524 $this->filterRecords(
525 $this->results_data_factory->addAttemptOverviewInformationToParticipants(
526 $this->results_presentation_settings,
527 $this->test_object,
528 $this->loadRecords($filter_data, $order)
529 ),
530 $filter_data
531 ),
532 $order
533 ),
534 $range
535 );
536 }
filterRecords(iterable $records, ?array $filter_data)
orderRecords(iterable $records, Order $order)
limitRecords(array $records, Range $range)

References ILIAS\UI\Implementation\Component\Table\$range.

◆ limitRecords()

ILIAS\Test\Participants\ParticipantTable::limitRecords ( array  $records,
Range  $range 
)
private

Definition at line 589 of file ParticipantTable.php.

589 : array
590 {
591 return array_slice($records, $range->getStart(), $range->getLength());
592 }

References ILIAS\UI\Implementation\Component\Table\$range, ILIAS\Data\Range\getLength(), and ILIAS\Data\Range\getStart().

+ Here is the call graph for this function:

◆ loadRecords()

ILIAS\Test\Participants\ParticipantTable::loadRecords ( ?array  $filter,
Order  $order 
)
private

Definition at line 472 of file ParticipantTable.php.

472 : iterable
473 {
474 if ($this->records !== null) {
475 return $this->records;
476 }
477
478 $records = iterator_to_array(
479 $this->repository->getParticipants(
480 $this->test_object->getTestId(),
481 $filter,
482 null,
483 $order
484 )
485 );
486
487 $this->records = array_filter(
488 $records,
489 fn(Participant $participant) => in_array(
490 $participant->getUserId(),
491 $this->buildAccessFilteredParticipantsList($records)
492 )
493 );
494
495 return $this->records;
496 }

References ILIAS\Test\Participants\Participant\getUserId(), and ILIAS\UI\examples\Deck\repository().

+ Here is the call graph for this function:

◆ matchFilter()

ILIAS\Test\Participants\ParticipantTable::matchFilter ( Participant  $record,
?array  $filter 
)
private

Definition at line 547 of file ParticipantTable.php.

547 : bool
548 {
549 if ($filter === null) {
550 return true;
551 }
552
553 $post_load_filters = $this->getPostLoadFilters();
554 $allow = true;
555
556 foreach ($filter as $key => $value) {
557 if (!$value) {
558 continue;
559 }
560
561 $post_load_filter = $post_load_filters[$key] ?? fn() => true;
562 $allow = $allow && $post_load_filter($value, $record);
563 }
564
565 return $allow;
566 }

◆ orderRecords()

ILIAS\Test\Participants\ParticipantTable::orderRecords ( iterable  $records,
Order  $order 
)
private

Definition at line 568 of file ParticipantTable.php.

568 : array
569 {
570 $post_load_order_fields = $this->getPostLoadOrderFields();
571 $records = iterator_to_array($records);
572
573 uasort($records, static function (Participant $a, Participant $b) use ($order, $post_load_order_fields) {
574 foreach ($order->get() as $subject => $direction) {
575 $post_load_order_field = $post_load_order_fields[$subject] ?? fn() => 0;
576 $index = $post_load_order_field($a, $b);
577
578 if ($index !== 0) {
579 return $direction === 'DESC' ? $index * -1 : $index;
580 }
581 }
582
583 return 0;
584 });
585
586 return $records;
587 }

References Vendor\Package\$a, Vendor\Package\$b, and ILIAS\Data\Order\get().

+ Here is the call graph for this function:

Field Documentation

◆ $records

iterable ILIAS\Test\Participants\ParticipantTable::$records = null
private

Definition at line 42 of file ParticipantTable.php.

◆ $scoring_enabled

bool ILIAS\Test\Participants\ParticipantTable::$scoring_enabled = false
private

Definition at line 43 of file ParticipantTable.php.

◆ ID

const ILIAS\Test\Participants\ParticipantTable::ID = 'pt'
private

Definition at line 41 of file ParticipantTable.php.


The documentation for this class was generated from the following file: