ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.GUIService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Notes;
22 
27 {
29 
30  public function __construct(InternalGUIService $internal_gui_service)
31  {
32  $this->internal_gui_service = $internal_gui_service;
33  }
34 
35  public function initJavascript(string $ajax_url = ""): void
36  {
37  $this->internal_gui_service->initJavascript($ajax_url);
38  }
39 
40  public function getCommentsGUI(
41  int $rep_obj_id,
42  int $obj_id,
43  string $obj_type,
44  int $news_id = 0
45  ): \ilCommentGUI {
46  return $this->internal_gui_service->getCommentsGUI(
47  $rep_obj_id,
48  $obj_id,
49  $obj_type,
50  $news_id
51  );
52  }
53 
54  public function getMessagesGUI(
55  int $recipient,
56  int $rep_obj_id,
57  int $obj_id,
58  string $obj_type
59  ): \ilMessageGUI {
60  return $this->internal_gui_service->getMessagesGUI(
61  $recipient,
62  $rep_obj_id,
63  $obj_id,
64  $obj_type
65  );
66  }
67 
68 
69 }
initJavascript(string $ajax_url="")
getCommentsGUI(int $rep_obj_id, int $obj_id, string $obj_type, int $news_id=0)
InternalGUIService $internal_gui_service
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(InternalGUIService $internal_gui_service)
getMessagesGUI(int $recipient, int $rep_obj_id, int $obj_id, string $obj_type)
Comment GUI.
Message GUI.