ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.InternalDomainService.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
18 namespace ILIAS\Folder;
19 
20 use ILIAS\DI;
22 
27 {
29 
32 
33  public function __construct(
35  InternalRepoService $repo_service,
36  InternalDataService $data_service
37  ) {
38  $this->repo_service = $repo_service;
39  $this->data_service = $data_service;
40  $this->initDomainServices($DIC);
41  }
42 
43  /*
44  public function access(int $ref_id, int $user_id) : Access\AccessManager
45  {
46  return new Access\AccessManager(
47  $this,
48  $this->access,
49  $ref_id,
50  $user_id
51  );
52  }*/
53 }
Repository internal data service.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initDomainServices(\ILIAS\DI\Container $DIC)
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Container.php:19
global $DIC
Definition: feed.php:28
Repository internal repo service.
Class HTTPServicesTest.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(DI\Container $DIC, InternalRepoService $repo_service, InternalDataService $data_service)