ILIAS  trunk Revision v11.0_alpha-1713-gd8962da2f67
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ilAccessHandler;
24 use ilCtrlInterface;
25 use ilDBInterface;
28 use ILIAS\Export\ExportHandler\Consumer\Factory as ilExportHandlderConsumerFactory;
29 use ILIAS\Export\ExportHandler\I\Consumer\FactoryInterface as ilExportHandlderConsumerFactoryInterface;
30 use ILIAS\Export\ExportHandler\I\FactoryInterface as ilExportHandlerFactoryInterface;
31 use ILIAS\Export\ExportHandler\I\Info\FactoryInterface as ilExportHandlerInfoFactoryInterface;
32 use ILIAS\Export\ExportHandler\I\Manager\FactoryInterface as ilExportHandlerManagerFactoryInterface;
33 use ILIAS\Export\ExportHandler\I\Part\FactoryInterface as ilExportHandlerPartFactoryInterface;
34 use ILIAS\Export\ExportHandler\I\PublicAccess\FactoryInterface as ilExportHandlerPublicAccessFactoryInterface;
35 use ILIAS\Export\ExportHandler\I\Repository\FactoryInterface as ilExportHandlerRepositoryFactoryInterface;
36 use ILIAS\Export\ExportHandler\I\Table\FactoryInterface as ilExportHandlerTableFactoryInterface;
37 use ILIAS\Export\ExportHandler\I\Target\FactoryInterface as ilExportHandlerTargetFactoryInterface;
38 use ILIAS\Export\ExportHandler\I\Wrapper\FactoryInterface as ilExportHandlerWrapperFactoryInterface;
39 use ILIAS\Export\ExportHandler\Info\Factory as ilExportHandlerInfoFactory;
40 use ILIAS\Export\ExportHandler\Manager\Factory as ilExportHandlerManagerFactory;
41 use ILIAS\Export\ExportHandler\Part\Factory as ilExportHandlerPartFactory;
42 use ILIAS\Export\ExportHandler\PublicAccess\Factory as ilExportHandlerPublicAccessFactory;
43 use ILIAS\Export\ExportHandler\Repository\Factory as ilExportHandlerRepositoryFactory;
44 use ILIAS\Export\ExportHandler\Table\Factory as ilExportHandlerTableFactory;
45 use ILIAS\Export\ExportHandler\Target\Factory as ilExportHandlerTargetFactory;
46 use ILIAS\Export\ExportHandler\Wrapper\Factory as ilExportHandlerWrapperFactory;
52 use ilLanguage;
54 use ilObjUser;
55 use ilTree;
56 
57 class Factory implements ilExportHandlerFactoryInterface
58 {
59  protected ilDBInterface $db;
60  protected ilLanguage $lng;
65  protected ilObjUser $user;
69  protected ilTree $tree;
73 
74  public function __construct()
75  {
76  global $DIC;
77  $this->db = $DIC->database();
78  $this->irss = $DIC->resourceStorage();
79  $this->filesystems = $DIC->filesystem();
80  $this->static_url = $DIC['static_url'];
81  $this->lng = $DIC->language();
82  $this->ctrl = $DIC->ctrl();
83  $this->user = $DIC->user();
84  $this->http_services = $DIC->http();
85  $this->refinery = $DIC->refinery();
86  $this->ui_services = $DIC->ui();
87  $this->obj_definition = $DIC['objDefinition'];
88  $this->tree = $DIC->repositoryTree();
89  $this->access = $DIC->access();
90  $this->data_factory = new ilDataFactory();
91  }
92 
93  public function part(): ilExportHandlerPartFactoryInterface
94  {
95  return new ilExportHandlerPartFactory($this);
96  }
97 
98  public function info(): ilExportHandlerInfoFactoryInterface
99  {
100  return new ilExportHandlerInfoFactory(
101  $this,
102  $this->irss
103  );
104  }
105 
106  public function target(): ilExportHandlerTargetFactoryInterface
107  {
108  return new ilExportHandlerTargetFactory(
109  $this
110  );
111  }
112 
113  public function repository(): ilExportHandlerRepositoryFactoryInterface
114  {
115  return new ilExportHandlerRepositoryFactory(
116  $this,
117  $this->db,
118  $this->irss,
119  $this->filesystems
120  );
121  }
122 
123  public function publicAccess(): ilExportHandlerPublicAccessFactoryInterface
124  {
125  return new ilExportHandlerPublicAccessFactory(
126  $this,
127  $this->db,
128  $this->static_url
129  );
130  }
131 
132  public function manager(): ilExportHandlerManagerFactoryInterface
133  {
134  return new ilExportHandlerManagerFactory(
135  $this,
136  $this->obj_definition,
137  $this->tree,
138  $this->access,
139  $this->wrapper()->dataFactory()->handler()
140  );
141  }
142 
143  public function consumer(): ilExportHandlderConsumerFactoryInterface
144  {
145  return new ilExportHandlderConsumerFactory(
146  $this
147  );
148  }
149 
150  public function table(): ilExportHandlerTableFactoryInterface
151  {
152  return new ilExportHandlerTableFactory(
153  $this,
154  $this->ui_services,
155  $this->http_services,
156  $this->refinery,
157  $this->user,
158  $this->lng,
159  $this->ctrl,
160  $this->data_factory
161  );
162  }
163 
164  public function wrapper(): ilExportHandlerWrapperFactoryInterface
165  {
166  return new ilExportHandlerWrapperFactory(
167  $this->data_factory
168  );
169  }
170 }
ilRefineryFactory $refinery
Definition: Factory.php:67
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilObjectDefinition $obj_definition
Definition: Factory.php:70
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static filesystems()
Returns the loaded filesystems.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
ResourcesStorageService $irss
Definition: Factory.php:62
The Filesystems interface defines the access methods which can be used to fetch the different filesys...
Definition: Filesystems.php:29