ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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.

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

References ILIAS\Taxonomy\InternalService\$DIC.

Member Function Documentation

◆ data()

ILIAS\Taxonomy\InternalService::data ( )

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

38 : InternalDataService
39 {
40 if (is_null(self::$data)) {
41 self::$data = new InternalDataService();
42 }
43 return self::$data;
44 }
static InternalDataService $data

References $data, and ILIAS\Taxonomy\InternalService\$data.

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

+ Here is the caller graph for this function:

◆ domain()

ILIAS\Taxonomy\InternalService::domain ( )

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

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 }
static InternalDomainService $domain

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

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

+ 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.

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 }
static InternalGUIService $gui

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

+ Here is the call graph for this function:

◆ repo()

ILIAS\Taxonomy\InternalService::repo ( )

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

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 }
static InternalRepoService $repo

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

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

+ 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.

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

◆ $DIC

Container ILIAS\Taxonomy\InternalService::$DIC
protected

◆ $domain

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

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

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

◆ $gui

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

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

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

◆ $repo

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

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

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


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