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

Public Member Functions

 __construct (Container $DIC, InternalDataService $data_service, InternalDomainService $domain_service)
 
 request (?array $passed_query_params=null, ?array $passed_post_data=null)
 
 content ()
 
 page ()
 
 notification ()
 
 wiki ()
 

Protected Attributes

InternalDataService $data_service
 
InternalDomainService $domain_service
 

Detailed Description

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

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

Constructor & Destructor Documentation

◆ __construct()

ILIAS\Wiki\InternalGUIService::__construct ( Container  $DIC,
InternalDataService  $data_service,
InternalDomainService  $domain_service 
)

Definition at line 39 of file class.InternalGUIService.php.

References ILIAS\Wiki\InternalGUIService\$data_service, ILIAS\Wiki\InternalGUIService\$domain_service, and ILIAS\Repository\initGUIServices().

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

Member Function Documentation

◆ content()

ILIAS\Wiki\InternalGUIService::content ( )

Definition at line 61 of file class.InternalGUIService.php.

61  : Content\GUIService
62  {
63  return new Content\GUIService(
64  $this->domain_service,
65  $this
66  );
67  }

◆ notification()

ILIAS\Wiki\InternalGUIService::notification ( )

Definition at line 77 of file class.InternalGUIService.php.

77  : NotificationGUI
78  {
79  return new NotificationGUI(
80  $this->domain_service,
81  $this
82  );
83  }

◆ page()

ILIAS\Wiki\InternalGUIService::page ( )

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

69  : Page\GUIService
70  {
71  return new Page\GUIService(
72  $this->domain_service,
73  $this
74  );
75  }

◆ request()

ILIAS\Wiki\InternalGUIService::request ( ?array  $passed_query_params = null,
?array  $passed_post_data = null 
)

Definition at line 49 of file class.InternalGUIService.php.

References ILIAS\Repository\$passed_post_data, ILIAS\Repository\$passed_query_params, and ILIAS\FileDelivery\http().

52  : WikiGUIRequest {
53  return new WikiGUIRequest(
54  $this->http(),
55  $this->domain_service->refinery(),
58  );
59  }
static http()
Fetches the global http state from ILIAS.
+ Here is the call graph for this function:

◆ wiki()

ILIAS\Wiki\InternalGUIService::wiki ( )

Definition at line 85 of file class.InternalGUIService.php.

85  : Wiki\GUIService
86  {
87  return new Wiki\GUIService(
88  $this->domain_service,
89  $this
90  );
91  }

Field Documentation

◆ $data_service

InternalDataService ILIAS\Wiki\InternalGUIService::$data_service
protected

◆ $domain_service

InternalDomainService ILIAS\Wiki\InternalGUIService::$domain_service
protected

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