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

Notes internal service. More...

+ Collaboration diagram for ILIAS\News\InternalService:

Public Member Functions

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

Protected Attributes

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

Detailed Description

Notes 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\News\InternalService::__construct ( 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\News\InternalService\data(), ILIAS\DI\Container\database(), ILIAS\News\InternalService\domain(), ILIAS\News\InternalService\gui(), and ILIAS\News\InternalService\repo().

+ Here is the call graph for this function:

Member Function Documentation

◆ data()

ILIAS\News\InternalService::data ( )

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

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

References ILIAS\News\InternalService\$data.

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

+ Here is the caller graph for this function:

◆ domain()

ILIAS\News\InternalService::domain ( )

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

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

References ILIAS\News\InternalService\$domain.

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

+ Here is the caller graph for this function:

◆ gui()

ILIAS\News\InternalService::gui ( )

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

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

References ILIAS\News\InternalService\$gui.

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

+ Here is the caller graph for this function:

◆ repo()

ILIAS\News\InternalService::repo ( )

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

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

References ILIAS\News\InternalService\$repo.

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

+ Here is the caller graph for this function:

Field Documentation

◆ $data

InternalDataService ILIAS\News\InternalService::$data
protected

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

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

◆ $domain

InternalDomainService ILIAS\News\InternalService::$domain
protected

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

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

◆ $gui

InternalGUIService ILIAS\News\InternalService::$gui
protected

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

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

◆ $repo

InternalRepoService ILIAS\News\InternalService::$repo
protected

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

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


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