ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ILIAS\MediaCast\InternalService Class Reference
+ Collaboration diagram for ILIAS\MediaCast\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\MediaCast\InternalService::__construct ( Container  $DIC)

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

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

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: feed.php:28
+ Here is the call graph for this function:

Member Function Documentation

◆ data()

ILIAS\MediaCast\InternalService::data ( )

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

References ILIAS\MediaCast\InternalService\$data.

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

55  : InternalDataService
56  {
57  return $this->data;
58  }
+ Here is the caller graph for this function:

◆ domain()

ILIAS\MediaCast\InternalService::domain ( )

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

References ILIAS\MediaCast\InternalService\$domain.

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

65  : InternalDomainService
66  {
67  return $this->domain;
68  }
+ Here is the caller graph for this function:

◆ gui()

ILIAS\MediaCast\InternalService::gui ( )

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

References ILIAS\MediaCast\InternalService\$gui.

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

70  : InternalGUIService
71  {
72  return $this->gui;
73  }
+ Here is the caller graph for this function:

◆ repo()

ILIAS\MediaCast\InternalService::repo ( )

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

References ILIAS\MediaCast\InternalService\$repo.

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

60  : InternalRepoService
61  {
62  return $this->repo;
63  }
+ Here is the caller graph for this function:

Field Documentation

◆ $data

InternalDataService ILIAS\MediaCast\InternalService::$data
protected

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

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

◆ $domain

InternalDomainService ILIAS\MediaCast\InternalService::$domain
protected

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

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

◆ $gui

InternalGUIService ILIAS\MediaCast\InternalService::$gui
protected

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

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

◆ $repo

InternalRepoService ILIAS\MediaCast\InternalService::$repo
protected

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

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


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