ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ILIAS\Style\Content\InternalService Class Reference

Content style internal service. More...

+ Collaboration diagram for ILIAS\Style\Content\InternalService:

Public Member Functions

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

Protected Attributes

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

Detailed Description

Content style 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\Style\Content\InternalService::__construct ( Container  $DIC)

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

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

37  {
38  $this->data = new InternalDataService();
39 
40  $this->repo = new InternalRepoService(
41  $this->data(),
42  $DIC->database(),
43  $DIC->filesystem()->web(),
44  $DIC->upload()
45  );
46  $this->domain = new InternalDomainService(
47  $DIC,
48  $this->repo,
49  $this->data
50  );
51  $this->gui = new InternalGUIService(
52  $DIC,
53  $this->data,
54  $this->domain
55  );
56  }
global $DIC
Definition: feed.php:28
+ Here is the call graph for this function:

Member Function Documentation

◆ data()

ILIAS\Style\Content\InternalService::data ( )

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

References ILIAS\Repository\InternalService\$data.

58  : InternalDataService
59  {
60  return $this->data;
61  }

◆ domain()

ILIAS\Style\Content\InternalService::domain ( )

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

References ILIAS\Repository\InternalService\$domain.

68  : InternalDomainService
69  {
70  return $this->domain;
71  }

◆ gui()

ILIAS\Style\Content\InternalService::gui ( )

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

References ILIAS\Repository\InternalService\$gui.

73  : InternalGUIService
74  {
75  return $this->gui;
76  }

◆ repo()

ILIAS\Style\Content\InternalService::repo ( )

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

References ILIAS\Repository\InternalService\$repo.

63  : InternalRepoService
64  {
65  return $this->repo;
66  }

Field Documentation

◆ $data

InternalDataService ILIAS\Style\Content\InternalService::$data
protected

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

◆ $domain

InternalDomainService ILIAS\Style\Content\InternalService::$domain
protected

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

◆ $gui

InternalGUIService ILIAS\Style\Content\InternalService::$gui
protected

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

◆ $repo

InternalRepoService ILIAS\Style\Content\InternalService::$repo
protected

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


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