ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
InterestedUserFieldAttribute.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
30 {
31  private string $name;
35  private array $components = [];
36 
37  public function __construct(
38  private readonly Language $lng,
39  private readonly string $attribute_name,
40  string $field_name
41  ) {
42  $this->name = $this->getNameTranslation($field_name, $attribute_name);
43  }
44 
45  public function getName(): string
46  {
47  return $this->name;
48  }
49 
50  public function getAttributeName(): string
51  {
52  return $this->attribute_name;
53  }
54 
58  public function getComponents(): array
59  {
60  return $this->components;
61  }
62 
63  private function getNameTranslation(string $field_name, string $attribute_name): string
64  {
65  $translation_key = str_replace("_{$field_name}", '', $attribute_name);
66  if (isset(\ilObjUserFolderGUI::USER_FIELD_TRANSLATION_MAPPING[$translation_key])) {
67  return $this->lng->txt(\ilObjUserFolderGUI::USER_FIELD_TRANSLATION_MAPPING[$translation_key]);
68  }
69 
70  return 'INVALID TRANSLATION KEY';
71  }
72 
73  public function addComponent(string $component_name, string $description): void
74  {
75  $this->components[$component_name] = new InterestedUserFieldComponent(
76  $component_name,
77  $description
78  );
79  }
80 }
__construct(private readonly Language $lng, private readonly string $attribute_name, string $field_name)
global $lng
Definition: privfeed.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...