ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ILIAS\Wiki\InternalDomainService Class Reference
+ Collaboration diagram for ILIAS\Wiki\InternalDomainService:

Public Member Functions

 __construct (Container $DIC, InternalRepoService $repo_service, InternalDataService $data_service)
 
 log ()
 
 content ()
 
 wiki ()
 
 page ()
 
 importantPage (int $ref_id)
 
 links (int $ref_id)
 

Protected Attributes

InternalRepoService $repo_service
 
InternalDataService $data_service
 

Detailed Description

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

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

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Wiki\InternalDomainService::__construct ( Container  $DIC,
InternalRepoService  $repo_service,
InternalDataService  $data_service 
)

Definition at line 40 of file class.InternalDomainService.php.

References ILIAS\Wiki\InternalDomainService\$data_service, ILIAS\Wiki\InternalDomainService\$repo_service, and ILIAS\Repository\initDomainServices().

44  {
45  $this->repo_service = $repo_service;
46  $this->data_service = $data_service;
47  $this->initDomainServices($DIC);
48  }
initDomainServices(\ILIAS\DI\Container $DIC)
global $DIC
Definition: feed.php:28
+ Here is the call graph for this function:

Member Function Documentation

◆ content()

ILIAS\Wiki\InternalDomainService::content ( )

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

55  : Content\DomainService
56  {
57  return new Content\DomainService(
58  $this->data_service,
59  $this->repo_service,
60  $this
61  );
62  }

◆ importantPage()

ILIAS\Wiki\InternalDomainService::importantPage ( int  $ref_id)

Definition at line 82 of file class.InternalDomainService.php.

References $ref_id, and ILIAS\Wiki\InternalDomainService\wiki().

82  : Navigation\ImportantPageManager
83  {
84  return new Navigation\ImportantPageManager(
85  $this->data_service,
86  $this->repo_service->importantPage(),
87  $this->wiki(),
88  $ref_id
89  );
90  }
$ref_id
Definition: ltiauth.php:67
+ Here is the call graph for this function:

◆ links()

ILIAS\Wiki\InternalDomainService::links ( int  $ref_id)

Definition at line 92 of file class.InternalDomainService.php.

References $ref_id.

92  : LinkManager
93  {
94  return new LinkManager(
95  $this->data_service,
96  $this->repo_service->missingPage(),
97  $this,
98  $ref_id
99  );
100  }
$ref_id
Definition: ltiauth.php:67

◆ log()

ILIAS\Wiki\InternalDomainService::log ( )

Definition at line 50 of file class.InternalDomainService.php.

References ILIAS\Repository\logger().

Referenced by ILIAS\Wiki\Notification\NotificationGUI\__construct(), and ILIAS\Wiki\Links\LinkManager\__construct().

50  : \ilLogger
51  {
52  return $this->logger()->wiki();
53  }
Component logger with individual log levels by component id.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ page()

ILIAS\Wiki\InternalDomainService::page ( )

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

Referenced by ILIAS\Wiki\Links\LinkManager\__construct().

73  : Page\DomainService
74  {
75  return new Page\DomainService(
76  $this->data_service,
77  $this->repo_service,
78  $this
79  );
80  }
+ Here is the caller graph for this function:

◆ wiki()

ILIAS\Wiki\InternalDomainService::wiki ( )

Definition at line 64 of file class.InternalDomainService.php.

Referenced by ILIAS\Wiki\InternalDomainService\importantPage().

64  : Wiki\DomainService
65  {
66  return new Wiki\DomainService(
67  $this->data_service,
68  $this->repo_service,
69  $this
70  );
71  }
+ Here is the caller graph for this function:

Field Documentation

◆ $data_service

InternalDataService ILIAS\Wiki\InternalDomainService::$data_service
protected

◆ $repo_service

InternalRepoService ILIAS\Wiki\InternalDomainService::$repo_service
protected

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