ILIAS  trunk Revision v11.0_alpha-1769-g99a433fe2dc
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ILIAS\Taxonomy\InternalService Class Reference
+ Collaboration diagram for ILIAS\Taxonomy\InternalService:

Public Member Functions

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

Protected Attributes

Container $DIC
 

Static Protected Attributes

static InternalDataService $data = null
 
static InternalRepoService $repo = null
 
static InternalDomainService $domain = null
 
static InternalGUIService $gui = null
 

Detailed Description

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

Constructor & Destructor Documentation

◆ __construct()

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

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

References ILIAS\Taxonomy\InternalService\$DIC.

34  {
35  $this->DIC = $DIC;
36  }

Member Function Documentation

◆ data()

ILIAS\Taxonomy\InternalService::data ( )

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

References $data.

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

38  : InternalDataService
39  {
40  if (is_null(self::$data)) {
41  self::$data = new InternalDataService();
42  }
43  return self::$data;
44  }
+ Here is the caller graph for this function:

◆ domain()

ILIAS\Taxonomy\InternalService::domain ( )

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

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

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

57  : InternalDomainService
58  {
59  if (is_null(self::$domain)) {
60  self::$domain = new InternalDomainService(
61  $this->DIC,
62  $this->repo(),
63  $this->data()
64  );
65  }
66  return self::$domain;
67  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ gui()

ILIAS\Taxonomy\InternalService::gui ( )

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

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

69  : InternalGUIService
70  {
71  if (is_null(self::$gui)) {
72  self::$gui = new InternalGUIService(
73  $this->DIC,
74  $this->data(),
75  $this->domain()
76  );
77  }
78  return self::$gui;
79  }
+ Here is the call graph for this function:

◆ repo()

ILIAS\Taxonomy\InternalService::repo ( )

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

References ILIAS\Taxonomy\InternalService\data().

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

46  : InternalRepoService
47  {
48  if (is_null(self::$repo)) {
49  self::$repo = new InternalRepoService(
50  $this->data(),
51  $this->DIC->database()
52  );
53  }
54  return self::$repo;
55  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $data

InternalDataService ILIAS\Taxonomy\InternalService::$data = null
staticprotected

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

◆ $DIC

Container ILIAS\Taxonomy\InternalService::$DIC
protected

◆ $domain

InternalDomainService ILIAS\Taxonomy\InternalService::$domain = null
staticprotected

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

◆ $gui

InternalGUIService ILIAS\Taxonomy\InternalService::$gui = null
staticprotected

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

◆ $repo

InternalRepoService ILIAS\Taxonomy\InternalService::$repo = null
staticprotected

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


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