ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TestScoringInteraction.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Test\Logging;
22 
24 
26 
32 
34 {
35  public const IDENTIFIER = 'si';
36 
37  private int $id;
38 
42  public function __construct(
43  private readonly int $test_ref_id,
44  private readonly int $question_id,
45  private readonly int $admin_id,
46  private readonly int $pax_id,
47  private readonly TestScoringInteractionTypes $interaction_type,
48  private readonly int $modification_timestamp,
49  private readonly array $additional_data
50  ) {
51 
52  }
53 
54  public function getUniqueIdentifier(): ?string
55  {
56  return self::IDENTIFIER . '_' . $this->id;
57  }
58 
59  public function withId(int $id): self
60  {
61  $clone = clone $this;
62  $clone->id = $id;
63  return $clone;
64  }
65 
66  public function getLogEntryAsDataTableRow(
68  TitleColumnsBuilder $title_builder,
69  DataRowBuilder $row_builder,
70  array $environment
71  ): DataRow {
72  $values = [
73  'date_and_time' => \DateTimeImmutable::createFromFormat('U', (string) $this->modification_timestamp)
74  ->setTimezone($environment['timezone']),
75  'corresponding_test' => $title_builder->buildTestTitleAsLink(
76  $this->test_ref_id
77  ),
79  $this->admin_id,
80  false,
81  false,
82  '',
83  true
84  ),
85  'participant' => \ilUserUtil::getNamePresentation(
86  $this->pax_id,
87  false,
88  false,
89  '',
90  true
91  ),
92  'log_entry_type' => $lng->txt(self::LANG_VAR_PREFIX . self::IDENTIFIER),
93  'interaction_type' => $lng->txt(self::LANG_VAR_PREFIX . $this->interaction_type->value)
94  ];
95 
96  if ($this->question_id !== null) {
97  $values['question'] = $title_builder->buildQuestionTitleAsLink(
98  $this->question_id,
99  $this->test_ref_id
100  );
101  }
102 
103  return $row_builder->buildDataRow(
104  $this->getUniqueIdentifier(),
105  $values
106  )->withDisabledAction(
108  $this->additional_data === []
109  );
110  }
111 
112  public function getLogEntryAsExportRow(
113  \ilLanguage $lng,
114  TitleColumnsBuilder $title_builder,
115  AdditionalInformationGenerator $additional_info,
116  array $environment
117  ): array {
118  return [
119  \DateTimeImmutable::createFromFormat('U', (string) $this->modification_timestamp)
120  ->setTimezone($environment['timezone'])
121  ->format($environment['date_format']),
122  $title_builder->buildTestTitleAsText($this->test_ref_id),
124  $this->admin_id,
125  false,
126  false,
127  '',
128  true
129  ),
131  $this->pax_id,
132  false,
133  false,
134  '',
135  true
136  ),
137  '',
138  $title_builder->buildQuestionTitleAsText($this->question_id),
139  $lng->txt(self::LANG_VAR_PREFIX . self::IDENTIFIER),
140  $lng->txt(self::LANG_VAR_PREFIX . $this->interaction_type->value),
141  $additional_info->parseForExport($this->additional_data, $environment)
142  ];
143  }
144 
146  AdditionalInformationGenerator $additional_info,
147  UIFactory $ui_factory,
148  array $environment
149  ): DescriptiveListing {
150  return $additional_info->parseForTable($this->additional_data, $environment);
151  }
152 
153  public function toStorage(): array
154  {
155  return [
156  'ref_id' => [\ilDBConstants::T_INTEGER , $this->test_ref_id],
157  'qst_id' => [\ilDBConstants::T_INTEGER , $this->question_id],
158  'admin_id' => [\ilDBConstants::T_INTEGER , $this->admin_id],
159  'pax_id' => [\ilDBConstants::T_INTEGER , $this->pax_id],
160  'interaction_type' => [\ilDBConstants::T_TEXT , $this->interaction_type->value],
161  'modification_ts' => [\ilDBConstants::T_INTEGER , $this->modification_timestamp],
162  'additional_data' => [\ilDBConstants::T_CLOB , json_encode($this->additional_data)]
163  ];
164  }
165 }
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
__construct(private readonly int $test_ref_id, private readonly int $question_id, private readonly int $admin_id, private readonly int $pax_id, private readonly TestScoringInteractionTypes $interaction_type, private readonly int $modification_timestamp, private readonly array $additional_data)
getLogEntryAsDataTableRow(\ilLanguage $lng, TitleColumnsBuilder $title_builder, DataRowBuilder $row_builder, array $environment)
parseForExport(array $additional_info, array $environment)
buildDataRow(string $id, array $record)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
buildQuestionTitleAsLink(int $question_id, int $test_ref_id)
getParsedAdditionalInformation(AdditionalInformationGenerator $additional_info, UIFactory $ui_factory, array $environment)
global $lng
Definition: privfeed.php:31
getLogEntryAsExportRow(\ilLanguage $lng, TitleColumnsBuilder $title_builder, AdditionalInformationGenerator $additional_info, array $environment)
parseForTable(array $additional_info, array $environment)