19 declare(strict_types=1);
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,
44 private readonly
int $modification_timestamp,
45 private readonly array $additional_data
52 return self::IDENTIFIER .
'_' .
$this->id;
55 public function withId(
int $id): self
69 'date_and_time' => \DateTimeImmutable::createFromFormat(
'U', (
string) $this->modification_timestamp)
70 ->setTimezone($environment[
'timezone']),
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)
87 if ($this->question_id !==
null) {
97 )->withDisabledAction(
99 $this->additional_data === []
110 \DateTimeImmutable::createFromFormat(
'U', (
string) $this->modification_timestamp)
111 ->setTimezone($environment[
'timezone'])
112 ->format($environment[
'date_format']),
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)
135 return $additional_info->
parseForTable($this->additional_data, $environment);
buildQuestionTitleAsText(?int $question_id)
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)
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...
TestParticipantInteractionTypes
buildQuestionTitleAsLink(int $question_id, int $test_ref_id)
buildTestTitleAsText(int $test_ref_id)
getLogEntryAsDataTableRow(\ilLanguage $lng, TitleColumnsBuilder $title_builder, DataRowBuilder $row_builder, array $environment)
const ACTION_ID_SHOW_ADDITIONAL_INFO
__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)
buildTestTitleAsLink(int $test_ref_id)
getLogEntryAsExportRow(\ilLanguage $lng, TitleColumnsBuilder $title_builder, AdditionalInformationGenerator $additional_info, array $environment)