ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ILIAS\Notes\InternalDomainService Class Reference
+ Collaboration diagram for ILIAS\Notes\InternalDomainService:

Public Member Functions

 __construct (Container $DIC, InternalRepoService $repo_service, InternalDataService $data_service)
 
 noteAccess ()
 
 notes ()
 
 notification ()
 

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 29 of file class.InternalDomainService.php.

Constructor & Destructor Documentation

◆ __construct()

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

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

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

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

Member Function Documentation

◆ noteAccess()

ILIAS\Notes\InternalDomainService::noteAccess ( )

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

Referenced by ILIAS\Notes\NotesManager\__construct().

46  : AccessManager
47  {
48  return new AccessManager(
49  $this->data_service,
50  $this->repo_service,
51  $this
52  );
53  }
+ Here is the caller graph for this function:

◆ notes()

ILIAS\Notes\InternalDomainService::notes ( )

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

Referenced by ILIAS\Notes\DomainService\__construct().

55  : NotesManager
56  {
57  return new NotesManager(
58  $this->data_service,
59  $this->repo_service,
60  $this
61  );
62  }
+ Here is the caller graph for this function:

◆ notification()

ILIAS\Notes\InternalDomainService::notification ( )

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

Referenced by ILIAS\Notes\NotesManager\__construct().

64  : NotificationsManager
65  {
66  return new NotificationsManager(
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\Notes\InternalDomainService::$data_service
protected

◆ $repo_service

InternalRepoService ILIAS\Notes\InternalDomainService::$repo_service
protected

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