ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjectCoreProperties.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 {
28  private const FIELDS = [
29  'object_id' => 'int',
30  'owner' => 'int',
31  'create_date' => 'DateTimeImmutable',
32  'update_date' => 'DateTimeImmutable',
33  'import_id' => 'text',
34  'type' => 'text'
35  ];
36  private ?int $object_id = null;
37  private ?string $type = null;
38  private ?int $owner = null;
41  private ?string $import_id = '';
42 
47  public function __construct(
48  private ilObjectPropertyTitleAndDescription $property_title_and_description,
49  private ilObjectPropertyIsOnline $property_is_online,
50  private ilObjectPropertyTileImage $property_tile_image,
51  ?array $data = null
52  ) {
53  if ($this->checkDataArray($data)) {
54  $this->setValuesByArray($data);
55  }
56  }
57 
58  public function getObjectId(): ?int
59  {
60  return $this->object_id;
61  }
62 
63  public function getType(): ?string
64  {
65  return $this->type;
66  }
67 
68  public function withType(?string $type): self
69  {
70  $clone = clone $this;
71  $clone->type = $type;
72  return $clone;
73  }
74 
75  public function getOwner(): ?int
76  {
77  return $this->owner;
78  }
79 
80  public function withOwner(int $owner): self
81  {
82  $clone = clone $this;
83  $clone->owner = $owner;
84  return $clone;
85  }
86 
87  public function getCreateDate(): ?DateTimeImmutable
88  {
89  return $this->create_date;
90  }
91 
93  {
94  return $this->update_date;
95  }
96 
97  public function getImportId(): string
98  {
99  return $this->import_id ?? '';
100  }
101 
102  public function withImportId(string $import_id): self
103  {
104  $clone = clone $this;
105  $clone->import_id = $import_id;
106  return $clone;
107  }
108 
110  {
111  return $this->property_title_and_description;
112  }
113 
114  public function withPropertyTitleAndDescription(ilObjectPropertyTitleAndDescription $property_title_and_description): self
115  {
116  $clone = clone $this;
117  $clone->property_title_and_description = $property_title_and_description;
118  return $clone;
119  }
120 
122  {
123  return $this->property_is_online;
124  }
125 
126  public function withPropertyIsOnline(ilObjectPropertyIsOnline $property_is_online): self
127  {
128  $clone = clone $this;
129  $clone->property_is_online = $property_is_online;
130  return $clone;
131  }
132 
134  {
135  return $this->property_tile_image;
136  }
137 
138  public function withPropertyTileImage(ilObjectPropertyTileImage $property_tile_image): self
139  {
140  $clone = clone $this;
141  $clone->property_tile_image = $property_tile_image;
142  return $clone;
143  }
144 
145 
150  protected function checkDataArray(?array $data): bool
151  {
152  if ($data === null) {
153  return false;
154  }
155 
156  if (array_diff_key(self::FIELDS, $data)
157  || array_diff_key($data, self::FIELDS)) {
158  return false;
159  }
160 
161  if ($data['object_id'] === null || $data['owner'] === null) {
162  return false;
163  }
164 
165  if (!is_int($data['object_id']) || !is_int($data['owner'])) {
166  return false;
167  }
168 
169  return $this->checkTypesOfDataArray($data);
170  }
171 
176  protected function setValuesByArray(array $data): void
177  {
178  foreach ($data as $key => $value) {
179  $this->$key = $value;
180  }
181  }
182 
183  protected function checkTypesOfDataArray(array $data): bool
184  {
185  foreach (self::FIELDS as $key => $value) {
186  if ($data[$key] === null) {
187  continue;
188  }
189  if ($value === 'int' && !is_int($data[$key])) {
190  return false;
191  }
192  if ($value === 'text' && !is_string($data[$key])) {
193  return false;
194  }
195  if ($value === 'bool' && !is_bool($data[$key])) {
196  return false;
197  }
198  if ($value === 'DateTimeImmutable' && !$data[$key] instanceof DateTimeImmutable) {
199  return false;
200  }
201  }
202  return true;
203  }
204 }
__construct(private ilObjectPropertyTitleAndDescription $property_title_and_description, private ilObjectPropertyIsOnline $property_is_online, private ilObjectPropertyTileImage $property_tile_image, ?array $data=null)
withPropertyTitleAndDescription(ilObjectPropertyTitleAndDescription $property_title_and_description)
withPropertyIsOnline(ilObjectPropertyIsOnline $property_is_online)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withPropertyTileImage(ilObjectPropertyTileImage $property_tile_image)