ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ILIAS\HTMLLearningModule\InternalService Class Reference
+ Collaboration diagram for ILIAS\HTMLLearningModule\InternalService:

Public Member Functions

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

Protected Attributes

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

Detailed Description

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

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

Constructor & Destructor Documentation

◆ __construct()

ILIAS\HTMLLearningModule\InternalService::__construct ( Container  $DIC)

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

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

References $DIC, ILIAS\HTMLLearningModule\InternalService\data(), ILIAS\DI\Container\database(), ILIAS\HTMLLearningModule\InternalService\domain(), ILIAS\HTMLLearningModule\InternalService\gui(), and ILIAS\HTMLLearningModule\InternalService\repo().

+ Here is the call graph for this function:

Member Function Documentation

◆ data()

ILIAS\HTMLLearningModule\InternalService::data ( )

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

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

References ILIAS\HTMLLearningModule\InternalService\$data.

Referenced by ILIAS\HTMLLearningModule\InternalService\__construct().

+ Here is the caller graph for this function:

◆ domain()

ILIAS\HTMLLearningModule\InternalService::domain ( )

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

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

References ILIAS\HTMLLearningModule\InternalService\$domain.

Referenced by ILIAS\HTMLLearningModule\InternalService\__construct().

+ Here is the caller graph for this function:

◆ gui()

ILIAS\HTMLLearningModule\InternalService::gui ( )

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

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

References ILIAS\HTMLLearningModule\InternalService\$gui.

Referenced by ILIAS\HTMLLearningModule\InternalService\__construct().

+ Here is the caller graph for this function:

◆ repo()

ILIAS\HTMLLearningModule\InternalService::repo ( )

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

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

References ILIAS\HTMLLearningModule\InternalService\$repo.

Referenced by ILIAS\HTMLLearningModule\InternalService\__construct().

+ Here is the caller graph for this function:

Field Documentation

◆ $data

InternalDataService ILIAS\HTMLLearningModule\InternalService::$data
protected

◆ $domain

InternalDomainService ILIAS\HTMLLearningModule\InternalService::$domain
protected

◆ $gui

InternalGUIService ILIAS\HTMLLearningModule\InternalService::$gui
protected

◆ $repo

InternalRepoService ILIAS\HTMLLearningModule\InternalService::$repo
protected

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