ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.InternalDomainService.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
27
32{
33 use GlobalDICDomainServices;
34
37
38 public function __construct(
42 ) {
43 $this->repo_service = $repo_service;
44 $this->data_service = $data_service;
45 $this->initDomainServices($DIC);
46 }
47
48 /*
49 public function access(int $ref_id, int $user_id) : Access\AccessManager
50 {
51 return new Access\AccessManager(
52 $this,
53 $this->access,
54 $ref_id,
55 $user_id
56 );
57 }*/
58
59 public function import(): ImportManager
60 {
61 return new ImportManager(
62 $this->repo_service->import()
63 );
64 }
65
66 public function editing(): EditManager
67 {
68 return new EditManager(
69 $this->repo_service->editing()
70 );
71 }
72}
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:36
Manages items in repository clipboard.
Survey question pool internal data service.
__construct(Container $DIC, InternalRepoService $repo_service, InternalDataService $data_service)
initDomainServices(\ILIAS\DI\Container $DIC)
global $DIC
Definition: shib_login.php:26