ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
ILIAS\MediaCast\InternalService Class Reference
+ Collaboration diagram for ILIAS\MediaCast\InternalService:

Public Member Functions

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

Protected Attributes

array $instance = []
 

Detailed Description

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

Constructor & Destructor Documentation

◆ __construct()

ILIAS\MediaCast\InternalService::__construct ( protected Container  $DIC)

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

30 {
31 }

Member Function Documentation

◆ data()

ILIAS\MediaCast\InternalService::data ( )

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

33 : InternalDataService
34 {
35 return $this->instance["data"] ??= new InternalDataService();
36 }

Referenced by ILIAS\MediaCast\InternalService\domain(), ILIAS\MediaCast\InternalService\gui(), and ILIAS\MediaCast\InternalService\repo().

+ Here is the caller graph for this function:

◆ domain()

ILIAS\MediaCast\InternalService::domain ( )

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

46 : InternalDomainService
47 {
48 return $this->instance["domain"] ??= new InternalDomainService(
49 $this->DIC,
50 $this->repo(),
51 $this->data()
52 );
53 }

References ILIAS\MediaCast\InternalService\data(), and ILIAS\MediaCast\InternalService\repo().

Referenced by ILIAS\MediaCast\InternalService\gui().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ gui()

ILIAS\MediaCast\InternalService::gui ( )

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

55 : InternalGUIService
56 {
57 return $this->instance["gui"] ??= new InternalGUIService(
58 $this->DIC,
59 $this->data(),
60 $this->domain()
61 );
62 }

References ILIAS\MediaCast\InternalService\data(), and ILIAS\MediaCast\InternalService\domain().

+ Here is the call graph for this function:

◆ repo()

ILIAS\MediaCast\InternalService::repo ( )

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

38 : InternalRepoService
39 {
40 return $this->instance["repo"] ??= new InternalRepoService(
41 $this->data(),
42 $this->DIC->database()
43 );
44 }

References ILIAS\MediaCast\InternalService\data().

Referenced by ILIAS\MediaCast\InternalService\domain().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $instance

array ILIAS\MediaCast\InternalService::$instance = []
protected

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


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