ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ILIAS\RootFolder\InternalService Class Reference

Repository internal service. More...

+ Collaboration diagram for ILIAS\RootFolder\InternalService:

Public Member Functions

 __construct (DI\Container $DIC)
 
 data ()
 
 repo ()
 
 domain ()
 
 gui ()
 

Protected Attributes

InternalDataService $data
 
InternalRepoService $repo
 
InternalDomainService $domain
 
InternalGUIService $gui
 

Detailed Description

Repository internal service.

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 29 of file class.InternalService.php.

Constructor & Destructor Documentation

◆ __construct()

ILIAS\RootFolder\InternalService::__construct ( DI\Container  $DIC)

Definition at line 36 of file class.InternalService.php.

37 {
38 $this->data = new InternalDataService();
39
40 $this->repo = new InternalRepoService(
41 $this->data(),
42 $DIC->database()
43 );
44 $this->domain = new InternalDomainService(
45 $DIC,
46 $this->repo,
47 $this->data
48 );
49 $this->gui = new InternalGUIService(
50 $DIC,
51 $this->data,
52 $this->domain
53 );
54 }
global $DIC
Definition: shib_login.php:26

References $DIC, ILIAS\Repository\InternalService\data(), ILIAS\Repository\InternalService\domain(), ILIAS\Repository\InternalService\gui(), and ILIAS\Repository\InternalService\repo().

+ Here is the call graph for this function:

Member Function Documentation

◆ data()

ILIAS\RootFolder\InternalService::data ( )

Definition at line 56 of file class.InternalService.php.

56 : InternalDataService
57 {
58 return $this->data;
59 }

References ILIAS\Repository\InternalService\$data.

◆ domain()

ILIAS\RootFolder\InternalService::domain ( )

Definition at line 66 of file class.InternalService.php.

66 : InternalDomainService
67 {
68 return $this->domain;
69 }

References ILIAS\Repository\InternalService\$domain.

◆ gui()

ILIAS\RootFolder\InternalService::gui ( )

Definition at line 71 of file class.InternalService.php.

71 : InternalGUIService
72 {
73 return $this->gui;
74 }

References ILIAS\Repository\InternalService\$gui.

◆ repo()

ILIAS\RootFolder\InternalService::repo ( )

Definition at line 61 of file class.InternalService.php.

61 : InternalRepoService
62 {
63 return $this->repo;
64 }

References ILIAS\Repository\InternalService\$repo.

Field Documentation

◆ $data

InternalDataService ILIAS\RootFolder\InternalService::$data
protected

Definition at line 31 of file class.InternalService.php.

◆ $domain

InternalDomainService ILIAS\RootFolder\InternalService::$domain
protected

Definition at line 33 of file class.InternalService.php.

◆ $gui

InternalGUIService ILIAS\RootFolder\InternalService::$gui
protected

Definition at line 34 of file class.InternalService.php.

◆ $repo

InternalRepoService ILIAS\RootFolder\InternalService::$repo
protected

Definition at line 32 of file class.InternalService.php.


The documentation for this class was generated from the following file: