6 include_once(
"Services/Notes/classes/class.ilNote.php");
69 $this->
user = $DIC->user();
70 $this->tabs = $DIC->tabs();
71 $this->
help = $DIC[
"ilHelp"];
73 $this->access = $DIC->access();
74 $this->toolbar = $DIC->toolbar();
76 $lng = $DIC->language();
77 $ilCtrl = $DIC->ctrl();
79 $ilTabs = $DIC->tabs();
80 $ilHelp = $DIC[
"ilHelp"];
82 $ilHelp->setScreenIdComponent(
"note");
84 $lng->loadLanguageModule(
"notes");
89 $this->ctrl = $ilCtrl;
92 if (
$_GET[
"rel_obj"]) {
94 $ilUser->writePref(
"pd_notes_mode", $mode);
95 $ilUser->writePref(
"pd_notes_rel_obj" . $mode,
$_GET[
"rel_obj"]);
98 elseif ($_REQUEST[
"note_id"]) {
99 $note =
new ilNote($_REQUEST[
"note_id"]);
100 $mode = ($note->getType() ==
IL_NOTE_PRIVATE) ? self::PRIVATE_NOTES : self::PUBLIC_COMMENTS;
101 $obj = $note->getObject();
102 $ilUser->writePref(
"pd_notes_mode", $mode);
103 $ilUser->writePref(
"pd_notes_rel_obj" . $mode, $obj[
"rep_obj_id"]);
112 $next_class = $this->ctrl->getNextClass();
113 switch ($next_class) {
126 $cmd = $this->ctrl->getCmd(
"view");
131 $this->tpl->printToStdout(
true);
142 $t = $this->lng->txt(
"notes");
144 $t = $this->lng->txt(
"notes_and_comments");
147 $t = $this->lng->txt(
"notes_comments");
150 if ($this->
getMode() == self::PRIVATE_NOTES) {
151 $t = $this->lng->txt(
"private_notes");
154 $t = $this->lng->txt(
"notes_public_comments");
158 $this->tpl->setTitle($t);
177 include_once(
"Services/Notes/classes/class.ilNoteGUI.php");
180 include_once(
"Services/Notes/classes/class.ilNote.php");
186 $rel_objs = array_merge(array(0), $rel_objs);
191 $lng->loadLanguageModule(
"notes");
197 $current_ref_ids = [];
198 foreach ($rel_objs as $r) {
200 $this->current_rel_obj = $r[
"rep_obj_id"];
201 $current_ref_ids = $r[
"ref_ids"];
203 if ($r[
"rep_obj_id"] ==
$ilUser->getPref(
"pd_notes_rel_obj" . $this->getMode())) {
204 $this->current_rel_obj = $r[
"rep_obj_id"];
205 $current_ref_ids = $r[
"ref_ids"];
209 if ($this->current_rel_obj > 0) {
211 $this->current_rel_obj,
224 $notes_gui->enablePublicNotes(
false);
226 $notes_gui->enablePrivateNotes(
false);
227 $notes_gui->enablePublicNotes(
true);
229 if ($this->current_rel_obj > 0 &&
230 count($current_ref_ids) > 0 &&
232 foreach ($current_ref_ids as $ref_id) {
233 if ($ilAccess->checkAccess(
"write",
"", $ref_id)) {
234 $notes_gui->enablePublicNotesDeletion(
true);
240 $notes_gui->enableHiding(
false);
241 $notes_gui->enableTargets(
true);
242 $notes_gui->enableMultiSelection(
true);
243 $notes_gui->enableAnchorJump(
false);
245 $next_class = $this->ctrl->getNextClass($this);
247 if ($next_class ==
"ilnotegui") {
248 $html = $this->ctrl->forwardCommand($notes_gui);
251 $html = $notes_gui->getOnlyNotesHTML();
253 $html = $notes_gui->getOnlyCommentsHTML();
257 if (count($rel_objs) > 1 ||
258 ($rel_objs[0][
"rep_obj_id"] > 0)) {
259 $ilToolbar->setFormAction($this->ctrl->getFormAction($this));
261 foreach ($rel_objs as $obj) {
262 if ($obj[
"rep_obj_id"] > 0) {
264 $type_str = (in_array(
$type, array(
"lm",
"htlm",
"sahs")))
265 ?
$lng->txt(
"obj_lm")
269 $caption =
$lng->txt(
"note_without_object");
272 $options[$obj[
"rep_obj_id"]] = $caption;
275 include_once
"Services/Form/classes/class.ilSelectInputGUI.php";
277 $rel->setOptions($options);
278 $rel->setValue($this->current_rel_obj);
279 $ilToolbar->addStickyItem($rel);
282 $btn->setCaption(
'change');
283 $btn->setCommand(
'changeRelatedObject');
284 $ilToolbar->addStickyItem($btn);
287 $this->tpl->setContent($html);
298 $this->ctrl->redirect($this);
336 $ilCtrl->redirect($this,
"");
349 $ilCtrl->redirect($this,
"showPrivateNotes");
353 $ilCtrl->redirect($this,
"");
executeCommand()
execute command
showPublicComments()
Show public comments.
static _lookupTitle($a_id)
lookup object title
changeRelatedObject()
change related object
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
__construct()
Constructor.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static infoPanel($a_keep=true)
static _getRelatedObjectsOfUser($a_mode)
get all related objects for user
static _lookupType($a_id, $a_reference=false)
lookup object type
displayHeader()
display header and locator
getMode()
Get current mode.
enablePrivateNotes($a_enable=true)
enable private notes
showPrivateNotes()
Show private notes.