ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjectPropertiesAgregator.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 use ILIAS\Object\Properties\ObjectTypeSpecificProperties\Factory as ObjectTypeSpecificPropertiesFactory;
23 
30 {
31  public function __construct(
32  private ilObjectCorePropertiesRepository $core_properties_repository,
33  private ilObjectAdditionalPropertiesRepository $additional_properties_repository,
34  private ObjectTypeSpecificPropertiesFactory $object_type_specific_properties_factory,
35  private LOMServices $lom_services
36  ) {
37  }
38 
39  public function getFor(int $object_id, ?string $type = null): ilObjectProperties
40  {
41  $core_properties = $this->core_properties_repository->getFor($object_id, $type);
42 
43  return new ilObjectProperties(
44  $core_properties,
45  $this->core_properties_repository,
46  $this->additional_properties_repository->getFor($object_id),
47  $this->additional_properties_repository,
48  $this->lom_services
49  );
50  }
51 
52  public function preload(array $object_ids): void
53  {
54  $this->core_properties_repository->preload($object_ids);
55  $objects_by_type = [];
56  foreach ($object_ids as $obj_id) {
57  $type = ilObject::_lookupType($obj_id);
58 
59  if (!array_key_exists($type, $objects_by_type)) {
60  $objects_by_type[$type] = [];
61  }
62  $objects_by_type[$type][] = $obj_id;
63  }
64 
65  foreach ($objects_by_type as $type => $obj_ids) {
66  $this->object_type_specific_properties_factory->getForObjectTypeString($type)?->preload($obj_ids);
67  }
68  }
69 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getFor(int $object_id, ?string $type=null)
Builds data types.
Definition: Factory.php:35
__construct(private ilObjectCorePropertiesRepository $core_properties_repository, private ilObjectAdditionalPropertiesRepository $additional_properties_repository, private ObjectTypeSpecificPropertiesFactory $object_type_specific_properties_factory, private LOMServices $lom_services)
static _lookupType(int $id, bool $reference=false)