ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TestParticipantInteraction.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Test\Logging;
22 
28 
30 {
31  public const IDENTIFIER = 'pi';
32 
33  private int $id;
34 
38  public function __construct(
39  private readonly int $test_ref_id,
40  private readonly ?int $question_id,
41  private readonly int $pax_id,
42  private readonly string $source_ip,
43  private readonly TestParticipantInteractionTypes $interaction_type,
44  private readonly int $modification_timestamp,
45  private readonly array $additional_data
46  ) {
47 
48  }
49 
50  public function getUniqueIdentifier(): ?string
51  {
52  return self::IDENTIFIER . '_' . $this->id;
53  }
54 
55  public function withId(int $id): self
56  {
57  $clone = clone $this;
58  $clone->id = $id;
59  return $clone;
60  }
61 
62  public function getLogEntryAsDataTableRow(
64  TitleColumnsBuilder $title_builder,
65  DataRowBuilder $row_builder,
66  array $environment
67  ): DataRow {
68  $values = [
69  'date_and_time' => \DateTimeImmutable::createFromFormat('U', (string) $this->modification_timestamp)
70  ->setTimezone($environment['timezone']),
71  'corresponding_test' => $title_builder->buildTestTitleAsLink(
72  $this->test_ref_id
73  ),
74  'admin' => '',
75  'participant' => \ilUserUtil::getNamePresentation(
76  $this->pax_id,
77  false,
78  false,
79  '',
80  true
81  ),
82  'ip' => $this->source_ip,
83  'log_entry_type' => $lng->txt(self::LANG_VAR_PREFIX . self::IDENTIFIER),
84  'interaction_type' => $lng->txt(self::LANG_VAR_PREFIX . $this->interaction_type->value)
85  ];
86 
87  if ($this->question_id !== null) {
88  $values['question'] = $title_builder->buildQuestionTitleAsLink(
89  $this->question_id,
90  $this->test_ref_id
91  );
92  }
93 
94  return $row_builder->buildDataRow(
95  $this->getUniqueIdentifier(),
96  $values
97  )->withDisabledAction(
99  $this->additional_data === []
100  );
101  }
102 
103  public function getLogEntryAsExportRow(
104  \ilLanguage $lng,
105  TitleColumnsBuilder $title_builder,
106  AdditionalInformationGenerator $additional_info,
107  array $environment
108  ): array {
109  return [
110  \DateTimeImmutable::createFromFormat('U', (string) $this->modification_timestamp)
111  ->setTimezone($environment['timezone'])
112  ->format($environment['date_format']),
113  $title_builder->buildTestTitleAsText($this->test_ref_id),
114  '',
116  $this->pax_id,
117  false,
118  false,
119  '',
120  true
121  ),
122  $this->source_ip,
123  $title_builder->buildQuestionTitleAsText($this->question_id),
124  $lng->txt(self::LANG_VAR_PREFIX . self::IDENTIFIER),
125  $lng->txt(self::LANG_VAR_PREFIX . $this->interaction_type->value),
126  $additional_info->parseForExport($this->additional_data, $environment)
127  ];
128  }
129 
131  AdditionalInformationGenerator $additional_info,
132  UIFactory $ui_factory,
133  array $environment
134  ): DescriptiveListing {
135  return $additional_info->parseForTable($this->additional_data, $environment);
136  }
137 
138  public function toStorage(): array
139  {
140  return [
141  'ref_id' => [\ilDBConstants::T_INTEGER , $this->test_ref_id],
142  'qst_id' => [\ilDBConstants::T_INTEGER , $this->question_id],
143  'pax_id' => [\ilDBConstants::T_INTEGER , $this->pax_id],
144  'source_ip' => [\ilDBConstants::T_TEXT , $this->source_ip],
145  'interaction_type' => [\ilDBConstants::T_TEXT , $this->interaction_type->value],
146  'modification_ts' => [\ilDBConstants::T_INTEGER , $this->modification_timestamp],
147  'additional_data' => [\ilDBConstants::T_CLOB , json_encode($this->additional_data)]
148  ];
149  }
150 }
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...
getParsedAdditionalInformation(AdditionalInformationGenerator $additional_info, UIFactory $ui_factory, 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)
getLogEntryAsDataTableRow(\ilLanguage $lng, TitleColumnsBuilder $title_builder, DataRowBuilder $row_builder, array $environment)
global $lng
Definition: privfeed.php:31
__construct(private readonly int $test_ref_id, private readonly ?int $question_id, private readonly int $pax_id, private readonly string $source_ip, private readonly TestParticipantInteractionTypes $interaction_type, private readonly int $modification_timestamp, private readonly array $additional_data)
parseForTable(array $additional_info, array $environment)
getLogEntryAsExportRow(\ilLanguage $lng, TitleColumnsBuilder $title_builder, AdditionalInformationGenerator $additional_info, array $environment)