ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.GUIService.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\Notes;
22
27{
29
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}
__construct(InternalGUIService $internal_gui_service)
getMessagesGUI(int $recipient, int $rep_obj_id, int $obj_id, string $obj_type)
InternalGUIService $internal_gui_service
initJavascript(string $ajax_url="")
getCommentsGUI(int $rep_obj_id, int $obj_id, string $obj_type, int $news_id=0)
return['delivery_method'=> 'php',]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...