ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjectDIC.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Object;
22 
23 use ILIAS\Object\Properties\ObjectTypeSpecificProperties\Factory as ObjectTypeSpecificPropertiesFactory;
32 
34 {
35  private static ?ilObjectDIC $dic = null;
36 
37  public static function dic(): self
38  {
39  if (self::$dic === null) {
40  global $DIC;
41  self::$dic = new ilObjectDIC();
42  self::$dic->init($DIC);
43  }
44 
45  return self::$dic;
46  }
47 
48  private function init(ILIASContainer $DIC): void
49  {
50  $this['common_settings'] = fn($c): \ilObjectCommonSettings => new \ilObjectCommonSettings(
51  $DIC['lng'],
52  $DIC['upload'],
53  $DIC['resource_storage'],
54  $DIC['http'],
55  $c['tile_image_stackholder'],
56  $c['tile_image_flavour']
57  );
58 
59  $this['object_properties_agregator'] = fn($c): \ilObjectPropertiesAgregator => new \ilObjectPropertiesAgregator(
60  $c['core_properties_repository'],
61  $c['additional_properties_repository'],
62  $c['object_type_specific_properties_factory'],
63  $DIC['learning_object_metadata']
64  );
65 
66  $this['core_properties_repository'] = fn($c): \ilObjectCorePropertiesRepository
67  => new \ilObjectCorePropertiesCachedRepository(
68  $DIC['ilDB'],
69  $DIC['objDefinition'],
70  $DIC['resource_storage'],
71  $c['tile_image_stackholder'],
73  $c['object_type_specific_properties_factory']
74  );
75 
76  $this['multi_object_properties_manipulator'] = fn($c): MultiObjectPropertiesManipulator
78  $c['object_reference_repository'],
79  $c['object_properties_agregator'],
80  $DIC['lng'],
81  $DIC['ilCtrl'],
82  $DIC['ilUser'],
83  $DIC['ui.factory'],
84  $DIC['tpl'],
85  $DIC['refinery']
86  );
87 
88  $this['additional_properties_repository'] = fn($c): \ilObjectAdditionalPropertiesRepository
89  => new \ilObjectAdditionalPropertiesLegacyRepository(
90  $DIC['object.customicons.factory'],
91  $c['object_type_specific_properties_factory']
92  );
93 
94  $this['tile_image_stackholder'] = static fn($c): ilObjectTileImageStakeholder
96 
97  $this['tile_image_flavour'] = static fn($c): ilObjectTileImageFlavourDefinition
99 
100  $this['object_type_specific_properties_factory'] = fn($c): ObjectTypeSpecificPropertiesFactory
101  => new ObjectTypeSpecificPropertiesFactory(
104  : [],
105  $DIC['ilDB']
106  );
107 
108  $this['object_reference_repository'] = fn($c): ObjectReferencePropertiesCachedRepository
110  $c['availability_period_repository'],
111  $DIC['ilDB']
112  );
113 
114  $this['availability_period_repository'] = fn($c): ObjectAvailabilityPeriodPropertiesCachedRepository
116  $DIC['ilDB'],
117  $DIC['tree']
118  );
119  }
120 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$c
Definition: deliver.php:25
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
static ilObjectDIC $dic
Definition: ilObjectDIC.php:35
Builds data types.
Definition: Factory.php:35
init(ILIASContainer $DIC)
Definition: ilObjectDIC.php:48
$dic
Definition: result.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: ilObjectDIC.php:21