33 protected \ILIAS\Notes\InternalGUIService
$gui;
34 protected \ILIAS\DI\UIServices
$ui;
55 $this->
user = $DIC->user();
56 $this->
tabs = $DIC->tabs();
57 $this->
help = $DIC[
"ilHelp"];
59 $this->
access = $DIC->access();
60 $this->
toolbar = $DIC->toolbar();
62 $lng = $DIC->language();
63 $ilCtrl = $DIC->ctrl();
65 $ilHelp = $DIC[
"ilHelp"];
66 $this->
ui = $DIC->ui();
68 $this->request = $DIC->notes()
73 $ilHelp->setScreenIdComponent(
"note");
80 $this->
ctrl = $ilCtrl;
82 $this->notes_manager = $DIC->notes()->internal()->domain()->notes();
83 $this->gui = $DIC->notes()->internal()->gui();
86 $rel_obj = $this->request->getRelatedObjId();
87 $this->note_type = ($this->request->getNoteType() === Note::PRIVATE || $ilCtrl->getCmd() ===
"getNotesHTML")
90 if ($ilCtrl->getCmd() ===
"getCommentsHTML") {
91 $this->note_type = Note::PUBLIC;
93 $this->
ctrl->setParameter($this,
"note_type", $this->note_type);
95 $ilUser->writePref(
"pd_notes_rel_obj" . $this->note_type, (
string) $rel_obj);
98 elseif ($this->request->getNoteId() > 0) {
99 $note = $this->notes_manager->getById($this->request->getNoteId());
101 $ilUser->writePref(
"pd_notes_rel_obj" . $this->note_type,
$context->getObjId());
104 $ajax_url = $this->
ctrl->getLinkTargetByClass(
105 [
"ildashboardgui",
"ilpdnotesgui",
"ilnotegui"],
111 $this->gui->initJavascript($ajax_url);
117 if (!isset(
$data[
"object"]) ||
$data[
"object"] ===
"") {
118 $this->current_rel_obj = null;
120 $this->current_rel_obj = (
int)
$data[
"object"];
122 $this->search_text =
$data[
"text"] ??
"";
127 $next_class = $this->
ctrl->getNextClass();
128 switch ($next_class) {
135 $cmd = $this->
ctrl->getCmd(
"view");
140 $this->tpl->printToStdout(
true);
147 $t = $this->
lng->txt(
"notes");
149 $t = $this->
lng->txt(
"notes_and_comments");
152 $t = $this->
lng->txt(
"notes_comments");
155 if ($this->note_type === Note::PRIVATE) {
156 $t = $this->
lng->txt(
"private_notes");
159 $t = $this->
lng->txt(
"notes_public_comments");
163 $this->tpl->setTitle($t);
168 if (is_null($this->related_objects)) {
169 $this->related_objects = $this->notes_manager->getRelatedObjectsOfUser(
187 if ($this->note_type === Note::PRIVATE) {
188 $rel_objs = array_merge(
195 if (count($rel_objs) === 0 && $this->note_type === Note::PUBLIC) {
197 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"msg_no_search_result"));
200 if ($this->current_rel_obj === null) {
210 } elseif ($this->current_rel_obj > 0) {
212 $this->current_rel_obj,
233 if ($this->note_type === Note::PRIVATE) {
235 $notes_gui->enablePublicNotes(
false);
237 $notes_gui->enablePrivateNotes(
false);
238 $notes_gui->enablePublicNotes(
true);
240 if ($this->current_rel_obj > 0 &&
243 if ($ilAccess->checkAccess(
"write",
"",
$ref_id)) {
244 $notes_gui->enablePublicNotesDeletion(
true);
250 $notes_gui->enableTargets(
true);
252 $next_class = $this->
ctrl->getNextClass($this);
254 if ($next_class ===
"ilnotegui") {
255 $html = $this->
ctrl->forwardCommand($notes_gui);
256 } elseif ($this->note_type === Note::PRIVATE) {
257 $html = $notes_gui->getNotesHTML();
259 $html = $notes_gui->getCommentsHTML();
262 $filter_html = $this->
getFilter()->render();
264 $this->tpl->setContent($filter_html . $html);
272 "pd_notes_rel_obj" . $this->note_type,
273 (
string) $this->request->getRelatedObjId()
275 $this->
ctrl->redirect($this);
293 $ilCtrl->redirect($this,
"showPrivateNotes");
296 $ilCtrl->redirectByClass(ilNoteGUI::class,
"getCommentsHTML");
301 $this->notes_manager->setSortAscending($this->gui->standardRequest()->getSortation() ===
"asc");
309 if (is_null($this->
filter)) {
312 if ($this->note_type === Note::PRIVATE) {
313 $options[-1] = $this->
lng->txt(
"note_without_object");
319 $this->
filter = $gui->filter(
320 "notes_filter_" . $this->note_type,
326 ->text(
"text", $lng->
txt(
"notes_text"))
327 ->select(
"object", $lng->
txt(
"notes_origin"), $options);
337 $c = $this->
lng->txt(
"create_date") .
", ";
339 'desc' =>
$c . $this->
lng->txt(
"sorting_desc"),
340 'asc' =>
$c . $this->
lng->txt(
"sorting_asc")
342 $select_option = ($this->notes_manager->getSortAscending())
345 $s = $this->
ui->factory()->viewControl()->sortation($options)
346 ->withTargetURL($ctrl->
getLinkTarget($this,
"setSortation"),
'sortation')
347 ->withLabel($options[$select_option]);
348 $this->
toolbar->addComponent($s);
351 $pv = $this->gui->print();
352 $modal_elements = $pv->getModalElements(
355 $this->
toolbar->addComponent($modal_elements->button);
356 $this->
toolbar->addComponent($modal_elements->modal);
359 $b = $this->
ui->factory()->button()->standard(
360 $this->
lng->txt(
"notes_html_export"),
371 $pv = $this->gui->print();
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS Notes FilterAdapterGUI $filter
getLinkTargetByClass( $a_class, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
redirectByClass( $a_class, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
Class ChatMainBarProvider .
static _getAllReferences(int $id)
get all reference ids for object ID
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
enablePrivateNotes(bool $a_enable=true)
loadLanguageModule(string $a_module)
Load language module.
static _lookupTitle(int $obj_id)
StandardGUIRequest $request
NotesManager $notes_manager
ilGlobalTemplateInterface $tpl
ILIAS Notes InternalGUIService $gui
getLinkTarget(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
static _lookupType(int $id, bool $reference=false)