ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectProperties.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
26 {
27  public function __construct(
28  private ilObjectCoreProperties $core_properties,
29  private ilObjectCorePropertiesRepository $core_properties_repository,
30  private ilObjectAdditionalProperties $additional_properties,
31  private ilObjectAdditionalPropertiesRepository $additional_properties_repository,
32  private LOMServices $lom_services
33  ) {
34  }
35 
36  public function storeCoreProperties(): void
37  {
38  $this->core_properties_repository->store($this->core_properties);
40  $this->core_properties->getPropertyTitleAndDescription()->getTitle(),
41  $this->core_properties->getPropertyTitleAndDescription()->getDescription()
42  );
43  }
44 
45  public function getOwner(): int
46  {
47  return $this->core_properties->getOwner();
48  }
49 
50  public function withOwner(int $owner): self
51  {
52  $clone = clone $this;
53  $clone->core_properties = $this->core_properties->withOwner($owner);
54  return $clone;
55  }
56 
57  public function getImportId(): string
58  {
59  return $this->core_properties->getImportId();
60  }
61 
62  public function withImportId(string $import_id): self
63  {
64  $clone = clone $this;
65  $clone->core_properties = $this->core_properties->withImportId($import_id);
66  return $clone;
67  }
68 
70  {
71  return $this->core_properties->getPropertyTitleAndDescription();
72  }
73 
75  ilObjectPropertyTitleAndDescription $property_title_and_description
76  ): self {
77  $clone = clone $this;
78  $clone->core_properties = $this->core_properties
79  ->withPropertyTitleAndDescription($property_title_and_description);
80  return $clone;
81  }
82 
84  ilObjectPropertyTitleAndDescription $property_title_and_description
85  ): void {
86  $this->core_properties = $this->core_properties_repository->store(
87  $this->core_properties
88  ->withPropertyTitleAndDescription($property_title_and_description)
89  );
91  $property_title_and_description->getTitle(),
92  $property_title_and_description->getLongDescription()
93  );
94  }
95 
97  {
98  return $this->core_properties->getPropertyIsOnline();
99  }
100 
101  public function storePropertyIsOnline(ilObjectPropertyIsOnline $property_is_online): void
102  {
103  $this->core_properties = $this->core_properties_repository->store(
104  $this->core_properties->withPropertyIsOnline($property_is_online)
105  );
106  }
107 
108  public function withPropertyIsOnline(
109  ilObjectPropertyIsOnline $property_is_online
110  ): self {
111  $clone = clone $this;
112  $clone->core_properties = $this->core_properties
113  ->withPropertyIsOnline($property_is_online);
114  return $clone;
115  }
116 
118  {
119  return $this->additional_properties->getPropertyTitleAndIconVisibility();
120  }
121 
123  ilObjectPropertyTitleAndIconVisibility $property_title_and_icon_visibility
124  ): void {
125  $this->additional_properties = $this->additional_properties_repository->store(
126  $this->additional_properties
127  ->withPropertyTitleAndIconVisibility($property_title_and_icon_visibility)
128  );
129  }
130 
132  {
133  return $this->additional_properties->getPropertyHeaderActionVisibility();
134  }
135 
137  ilObjectPropertyHeaderActionVisibility $property_header_action_visibility
138  ): void {
139  $this->additional_properties = $this->additional_properties_repository->store(
140  $this->additional_properties
141  ->withPropertyHeaderActionVisibility($property_header_action_visibility)
142  );
143  }
144 
146  {
147  return $this->additional_properties->getPropertyInfoTabVisibility();
148  }
149 
151  ilObjectPropertyInfoTabVisibility $property_info_tab_visibility
152  ): void {
153  $this->additional_properties = $this->additional_properties_repository->store(
154  $this->additional_properties
155  ->withPropertyInfoTabVisibility($property_info_tab_visibility)
156  );
157  }
158 
160  {
161  return $this->core_properties->getPropertyTileImage();
162  }
163 
164  public function storePropertyTileImage(
165  ilObjectPropertyTileImage $property_tile_image
166  ): void {
167  $this->core_properties = $this->core_properties_repository->store(
168  $this->core_properties
169  ->withPropertyTileImage($property_tile_image)
170  );
171  }
172 
174  {
175  return $this->additional_properties->getPropertyIcon();
176  }
177 
178  public function storePropertyIcon(
179  ilObjectPropertyIcon $property_icon
180  ): void {
181  $this->additional_properties = $this->additional_properties_repository->store(
182  $this->additional_properties
183  ->withPropertyIcon($property_icon)
184  );
185  }
186 
188  string $title,
189  string $description
190  ): void {
191  $paths = $this->lom_services->paths();
192  $obj_id = $this->core_properties->getObjectId();
193  $type = $this->core_properties->getType();
194 
195  /*
196  * This is a hacky solution to distinguish between
197  * objects with LOM support and without. In the future, proper
198  * infrastructure to make that distinction should be added.
199  */
200  $title_data = $this->lom_services->read($obj_id, 0, $type, $paths->title())
201  ->firstData($paths->title());
202  if ($title_data->type() === LOMType::NULL) {
203  return;
204  }
205 
206  $manipulator = $this->lom_services->manipulate($obj_id, 0, $type)
207  ->prepareCreateOrUpdate($paths->title(), $title);
208  if ($description !== '') {
209  $manipulator = $manipulator->prepareCreateOrUpdate($paths->firstDescription(), $description);
210  } else {
211  $manipulator = $manipulator->prepareDelete($paths->firstDescription());
212  }
213  $manipulator->execute();
214  }
215 }
__construct(private ilObjectCoreProperties $core_properties, private ilObjectCorePropertiesRepository $core_properties_repository, private ilObjectAdditionalProperties $additional_properties, private ilObjectAdditionalPropertiesRepository $additional_properties_repository, private LOMServices $lom_services)
withPropertyTitleAndDescription(ilObjectPropertyTitleAndDescription $property_title_and_description)
storePropertyIsOnline(ilObjectPropertyIsOnline $property_is_online)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
withImportId(string $import_id)
storePropertyTileImage(ilObjectPropertyTileImage $property_tile_image)
storePropertyTitleAndDescription(ilObjectPropertyTitleAndDescription $property_title_and_description)
storePropertyInfoTabVisibility(ilObjectPropertyInfoTabVisibility $property_info_tab_visibility)
storePropertyHeaderActionVisibility(ilObjectPropertyHeaderActionVisibility $property_header_action_visibility)
updateMetadataForTitleAndDescription(string $title, string $description)
withPropertyIsOnline(ilObjectPropertyIsOnline $property_is_online)
storePropertyTitleAndIconVisibility(ilObjectPropertyTitleAndIconVisibility $property_title_and_icon_visibility)
storePropertyIcon(ilObjectPropertyIcon $property_icon)