ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
InterestedUserFieldChangeListener.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 
30 {
34  private array $attributes = [];
35 
36  public function __construct(
37  private readonly Language $lng,
38  private readonly string $name,
39  private readonly string $field_name
40  ) {
41  }
42 
43  public function getName(): string
44  {
45  return $this->name;
46  }
47 
48  public function getFieldName(): string
49  {
50  return $this->field_name;
51  }
52 
56  public function getAttributes(): array
57  {
58  return $this->attributes;
59  }
60 
61  public function addAttribute(string $attribute_name): InterestedUserFieldAttribute
62  {
63  if (!isset($this->attributes[$attribute_name])) {
64  $this->attributes[$attribute_name] = new InterestedUserFieldAttribute(
65  $this->lng,
66  $attribute_name,
67  $this->field_name
68  );
69  }
70  return $this->attributes[$attribute_name];
71  }
72 }
__construct(private readonly Language $lng, private readonly string $name, private readonly string $field_name)
global $lng
Definition: privfeed.php:31