ILIAS  Release_3_10_x_branch Revision 61812
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilNoteGUI Class Reference

Notes GUI class. More...

+ Collaboration diagram for ilNoteGUI:

Public Member Functions

 ilNoteGUI ($a_rep_obj_id="", $a_obj_id="", $a_obj_type="", $a_include_subobjects=false)
 constructor, specifies notes set
executeCommand ()
 execute command
 enablePrivateNotes ($a_enable=true)
 enable private notes
 enablePublicNotes ($a_enable=true)
 enable public notes
 enableCommentsSettings ($a_enable=true)
 enable private notes
 enablePublicNotesDeletion ($a_enable=true)
 enable public notes
 enableHiding ($a_enable=true)
 enable hiding
 enableTargets ($a_enable=true)
 enable target objects
 enableMultiSelection ($a_enable=true)
 enable multi selection (checkboxes and commands)
 getNotesHTML ()
 activateComments ()
 Activate Comments.
 deactivateComments ()
 Deactivate Comments.
 getNoteListHTML ($a_type=IL_NOTE_PRIVATE)
 get notes/comments list as html code
 getPDNoteHTML ($note_id)
 Note display for personal desktop.
 showTargets (&$tpl, $a_rep_obj_id, $a_note_id, $a_obj_type, $a_obj_id)
 show related objects as links
 addNoteForm ()
 get notes list including add note area
 cancelAddNote ()
 cancel add note
 cancelUpdateNote ()
 cancel edit note
 addNote ()
 add note
 updateNote ()
 update note
 editNoteForm ()
 get notes list including add note area
 deleteNote ()
 delete note confirmation
 deleteNotes ()
 delete notes confirmation
 cancelDelete ()
 cancel deletion of note
 confirmDelete ()
 cancel deletion of note
 exportNotesHTML ()
 export selected notes to html
 printNotes ()
 notes print view screen
 showNotes ()
 show notes
 hideNotes ()
 hide notes
 showAllPublicNotes ()
 show all public notes to user
 showMyPublicNotes ()
 show only public notes of user

Data Fields

 $public_deletion_enabled = false

Detailed Description

Notes GUI class.

An instance of this class handles all notes (and their lists) of an object.

Author
Alex Killing alex..nosp@m.kill.nosp@m.ing@g.nosp@m.mx.d.nosp@m.e
Version
Id:
class.ilNoteGUI.php 20375 2009-06-29 14:45:44Z akill

Definition at line 36 of file class.ilNoteGUI.php.

Member Function Documentation

ilNoteGUI::activateComments ( )

Activate Comments.

Definition at line 251 of file class.ilNoteGUI.php.

References $ilCtrl.

{
global $ilCtrl;
$notes_settings = new ilSetting("notes");
if ($this->comments_settings)
{
$id = $this->rep_obj_id."_".$this->obj_id."_".$this->obj_type;
$notes_settings->set("activate_".$id, 1);
}
$ilCtrl->redirectByClass("ilnotegui", "getNotesHtml");
}
ilNoteGUI::addNote ( )

add note

Definition at line 895 of file class.ilNoteGUI.php.

References $_GET, getNotesHTML(), and ilUtil\stripSlashes().

{
global $ilUser;
if($_POST["note"] != "" || $_POST["sub_note"] != "")
{
$note = new ilNote();
$note->setObject($this->obj_type, $this->rep_obj_id, $this->obj_id);
$note->setType($_GET["note_type"]);
$note->setAuthor($ilUser->getId());
$note->setText(ilUtil::stripSlashes($_POST["note"]));
$note->setSubject(ilUtil::stripSlashes($_POST["sub_note"]));
$note->setLabel($_POST["note_label"]);
$note->create();
}
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::addNoteForm ( )

get notes list including add note area

Definition at line 863 of file class.ilNoteGUI.php.

References $_GET, getNotesHTML(), and IL_NOTE_PRIVATE.

{
global $ilUser;
$suffix = ($_GET["note_type"] == IL_NOTE_PRIVATE)
? "private"
: "public";
$ilUser->setPref("notes_".$suffix, "y");
$this->add_note_form = true;
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::cancelAddNote ( )

cancel add note

Definition at line 879 of file class.ilNoteGUI.php.

References getNotesHTML().

{
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::cancelDelete ( )

cancel deletion of note

Definition at line 972 of file class.ilNoteGUI.php.

References getNotesHTML().

{
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::cancelUpdateNote ( )

cancel edit note

Definition at line 887 of file class.ilNoteGUI.php.

References getNotesHTML().

{
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::confirmDelete ( )

cancel deletion of note

Definition at line 980 of file class.ilNoteGUI.php.

References getNotesHTML().

{
foreach($_POST["note"] as $id)
{
$note = new ilNote($id);
$note->delete();
}
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::deactivateComments ( )

Deactivate Comments.

Definition at line 269 of file class.ilNoteGUI.php.

References $ilCtrl.

{
global $ilCtrl;
$notes_settings = new ilSetting("notes");
if ($this->comments_settings)
{
$id = $this->rep_obj_id."_".$this->obj_id."_".$this->obj_type;
$notes_settings->set("activate_".$id, 0);
}
$ilCtrl->redirectByClass("ilnotegui", "getNotesHtml");
}
ilNoteGUI::deleteNote ( )

delete note confirmation

Definition at line 945 of file class.ilNoteGUI.php.

References getNotesHTML().

{
$this->delete_note = true;
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::deleteNotes ( )

delete notes confirmation

Definition at line 954 of file class.ilNoteGUI.php.

References $lng, getNotesHTML(), and ilUtil\sendInfo().

{
global $lng;
if (!$_POST["note"])
{
ilUtil::sendInfo($lng->txt("no_checkbox"));
}
else
{
$this->delete_note = true;
}
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::editNoteForm ( )

get notes list including add note area

Definition at line 936 of file class.ilNoteGUI.php.

References getNotesHTML().

{
$this->edit_note_form = true;
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::enableCommentsSettings (   $a_enable = true)

enable private notes

Definition at line 154 of file class.ilNoteGUI.php.

{
$this->comments_settings = $a_enable;
}
ilNoteGUI::enableHiding (   $a_enable = true)

enable hiding

Definition at line 170 of file class.ilNoteGUI.php.

{
$this->enable_hiding = $a_enable;
}
ilNoteGUI::enableMultiSelection (   $a_enable = true)

enable multi selection (checkboxes and commands)

Definition at line 186 of file class.ilNoteGUI.php.

{
$this->multi_selection = $a_enable;
}
ilNoteGUI::enablePrivateNotes (   $a_enable = true)

enable private notes

Definition at line 138 of file class.ilNoteGUI.php.

Referenced by ilPDNotesGUI\view().

{
$this->private_enabled = $a_enable;
}

+ Here is the caller graph for this function:

ilNoteGUI::enablePublicNotes (   $a_enable = true)

enable public notes

Definition at line 146 of file class.ilNoteGUI.php.

{
$this->public_enabled = $a_enable;
}
ilNoteGUI::enablePublicNotesDeletion (   $a_enable = true)

enable public notes

Definition at line 162 of file class.ilNoteGUI.php.

Referenced by ilLMPresentationGUI\ilLMNotes().

{
$this->public_deletion_enabled = $a_enable;
}

+ Here is the caller graph for this function:

ilNoteGUI::enableTargets (   $a_enable = true)

enable target objects

Definition at line 178 of file class.ilNoteGUI.php.

{
$this->targets_enabled = $a_enable;
}
& ilNoteGUI::executeCommand ( )

execute command

Definition at line 122 of file class.ilNoteGUI.php.

References $cmd.

{
$cmd = $this->ctrl->getCmd("getNotesHTML");
$next_class = $this->ctrl->getNextClass($this);
switch($next_class)
{
default:
return $this->$cmd();
break;
}
}
ilNoteGUI::exportNotesHTML ( )

export selected notes to html

Definition at line 993 of file class.ilNoteGUI.php.

References $tpl, ilUtil\deliverData(), and getNotesHTML().

{
$tpl = new ilTemplate("tpl.main.html", true, true);
$this->export_html = true;
$this->multi_selection = false;
$tpl->setVariable("CONTENT", $this->getNotesHTML());
ilUtil::deliverData($tpl->get(), "notes.html");
}

+ Here is the call graph for this function:

ilNoteGUI::getNoteListHTML (   $a_type = IL_NOTE_PRIVATE)

get notes/comments list as html code

Definition at line 287 of file class.ilNoteGUI.php.

References $_GET, $ilCtrl, $lng, $public_deletion_enabled, $tpl, ilObject\_exists(), ilNote\_getNotesOfObject(), ilObjUser\_getPersonalPicturePath(), ilObjUser\_lookupLogin(), ilDatePresentation\formatDate(), ilUtil\getImagePath(), IL_CAL_DATETIME, IL_NOTE_CONTRA, IL_NOTE_IMPORTANT, IL_NOTE_PRIVATE, IL_NOTE_PRO, IL_NOTE_PUBLIC, IL_NOTE_QUESTION, IL_NOTE_UNLABELED, ilUtil\prepareFormOutput(), and showTargets().

Referenced by getNotesHTML().

{
global $lng, $ilCtrl, $ilUser, $ilAccess, $tree, $objDefinition;
$suffix = ($a_type == IL_NOTE_PRIVATE)
? "private"
: "public";
if ($this->delete_note || $this->export_html || $this->print)
{
if ($_GET["note_id"] != "")
{
$filter = $_GET["note_id"];
}
else
{
$filter = $_POST["note"];
}
}
$notes = ilNote::_getNotesOfObject($this->rep_obj_id, $this->obj_id,
$this->obj_type, $a_type, $this->inc_sub, $filter,
$ilUser->getPref("notes_pub_all"), $this->public_deletion_enabled);
$all_notes = ilNote::_getNotesOfObject($this->rep_obj_id, $this->obj_id,
$this->obj_type, $a_type, $this->inc_sub, $filter,
"", $this->public_deletion_enabled);
$tpl = new ilTemplate("tpl.notes_list.html", true, true, "Services/Notes");
// show counter if notes are hidden
$cnt_str = (count($all_notes) > 0)
? " (".count($all_notes).")"
: "";
if ($a_type == IL_NOTE_PUBLIC)
{
$tpl->setVariable("IMG_NOTES", ilUtil::getImagePath("icon_comment.gif"));
}
else
{
$tpl->setVariable("IMG_NOTES", ilUtil::getImagePath("icon_note.gif"));
}
if ($this->delete_note)
{
$tpl->setVariable("TXT_NOTES", $lng->txt("info_delete_sure"));
}
else if ($a_type == IL_NOTE_PRIVATE)
{
$tpl->setVariable("TXT_NOTES", $lng->txt("private_notes").$cnt_str);
$tpl->setVariable("A_NAME", "notes_top");
$ilCtrl->setParameterByClass("ilnotegui", "note_type", IL_NOTE_PRIVATE);
}
else
{
$tpl->setVariable("TXT_NOTES", $lng->txt("notes_public_comments").$cnt_str);
$tpl->setVariable("A_NAME", "comments_top");
$ilCtrl->setParameterByClass("ilnotegui", "note_type", IL_NOTE_PUBLIC);
}
$tpl->setVariable("FORMACTION", $ilCtrl->getFormAction($this, "getNotesHTML", "notes_top"));
if ($this->export_html || $this->print)
{
$tpl->touchBlock("print_style");
}
// show add new note button
if (!$this->add_note_form && !$this->edit_note_form && !$this->delete_note &&
!$this->export_html && !$this->print &&
($ilUser->getId() != ANONYMOUS_USER_ID))
{
if (!$this->inc_sub) // we cannot offer add button if aggregated notes
{ // are displayed
$tpl->setCurrentBlock("add_note_btn");
if ($a_type == IL_NOTE_PUBLIC)
{
$tpl->setVariable("TXT_ADD_NOTE", $lng->txt("notes_add_comment"));
}
else
{
$tpl->setVariable("TXT_ADD_NOTE", $lng->txt("add_note"));
}
$tpl->setVariable("LINK_ADD_NOTE", $ilCtrl->getLinkTargetByClass("ilnotegui", "addNoteForm").
"#note_edit");
$tpl->parseCurrentBlock();
}
}
// show show/hide button for note list
if (count($all_notes) > 0 && $this->enable_hiding && !$this->delete_note
&& !$this->export_html && !$this->print)
{
if ($ilUser->getPref("notes_".$suffix) == "n")
{
$tpl->setCurrentBlock("show_notes");
$tpl->setVariable("LINK_SHOW_NOTES",
$this->ctrl->getLinkTargetByClass("ilnotegui", "showNotes", "notes_top"));
if ($a_type == IL_NOTE_PUBLIC)
{
$tpl->setVariable("TXT_SHOW_NOTES", $lng->txt("notes_show_comments"));
}
else
{
$tpl->setVariable("TXT_SHOW_NOTES", $lng->txt("show_".$suffix."_notes"));
}
$tpl->parseCurrentBlock();
}
else
{
// never individually hide for anonymous users
if (($ilUser->getId() != ANONYMOUS_USER_ID))
{
$tpl->setCurrentBlock("hide_notes");
$tpl->setVariable("LINK_HIDE_NOTES",
$this->ctrl->getLinkTargetByClass("ilnotegui", "hideNotes", "notes_top"));
if ($a_type == IL_NOTE_PUBLIC)
{
$tpl->setVariable("TXT_HIDE_NOTES", $lng->txt("notes_hide_comments"));
}
else
{
$tpl->setVariable("TXT_HIDE_NOTES", $lng->txt("hide_".$suffix."_notes"));
}
$tpl->parseCurrentBlock();
// show all public notes / my notes only switch
if ($a_type == IL_NOTE_PUBLIC)
{
if ($ilUser->getPref("notes_pub_all") == "n")
{
$tpl->setCurrentBlock("all_pub_notes");
$tpl->setVariable("LINK_ALL_PUB_NOTES",
$this->ctrl->getLinkTargetByClass("ilnotegui", "showAllPublicNotes", "notes_top"));
$tpl->setVariable("TXT_ALL_PUB_NOTES", $lng->txt("notes_all_comments"));
$tpl->parseCurrentBlock();
}
else
{
$tpl->setCurrentBlock("my_pub_notes");
$tpl->setVariable("LINK_MY_PUB_NOTES",
$this->ctrl->getLinkTargetByClass("ilnotegui", "showMyPublicNotes", "notes_top"));
$tpl->setVariable("TXT_MY_PUB_NOTES", $lng->txt("notes_my_comments"));
$tpl->parseCurrentBlock();
}
}
}
}
}
// show add new note text area
if ($this->add_note_form && $a_type == $_GET["note_type"])
{
$tpl->setCurrentBlock("edit_note");
$tpl->setVariable("TXT_SUBJECT", $lng->txt("subject"));
if ($a_type == IL_NOTE_PUBLIC)
{
$tpl->setVariable("TXT_NOTE", $lng->txt("notes_comment"));
}
else
{
$tpl->setVariable("TXT_NOTE", $lng->txt("note"));
}
$tpl->setVariable("NOTE_SUBJECT", "");
$tpl->setVariable("SUB_NOTE", "sub_note");
$tpl->setVariable("TA_NOTE", "note");
$tpl->setVariable("NOTE_CONTENT", "");
$tpl->setVariable("BTN_ADD_NOTE", "addNote");
$tpl->setVariable("TXT_ADD_NOTE", $lng->txt("add"));
$tpl->setVariable("BTN_CANCEL_ADD_NOTE", "cancelAddNote");
$tpl->setVariable("TXT_CANCEL_ADD_NOTE", $lng->txt("cancel"));
$tpl->setVariable("VAL_LABEL_NONE", IL_NOTE_UNLABELED);
$tpl->setVariable("TXT_LABEL_NONE", $lng->txt("unlabeled"));
$tpl->setVariable("VAL_LABEL_QUESTION", IL_NOTE_QUESTION);
$tpl->setVariable("TXT_LABEL_QUESTION", $lng->txt("question"));
$tpl->setVariable("VAL_LABEL_IMPORTANT", IL_NOTE_IMPORTANT);
$tpl->setVariable("TXT_LABEL_IMPORTANT", $lng->txt("important"));
$tpl->setVariable("VAL_LABEL_PRO", IL_NOTE_PRO);
$tpl->setVariable("TXT_LABEL_PRO", $lng->txt("pro"));
$tpl->setVariable("VAL_LABEL_CONTRA", IL_NOTE_CONTRA);
$tpl->setVariable("TXT_LABEL_CONTRA", $lng->txt("contra"));
$tpl->parseCurrentBlock();
$tpl->setCurrentBlock("note_row");
$tpl->parseCurrentBlock();
}
// list all notes
if ($ilUser->getPref("notes_".$suffix) != "n" || !$this->enable_hiding)
{
foreach($notes as $note)
{
if ($this->edit_note_form && ($note->getId() == $_GET["note_id"])
&& $a_type == $_GET["note_type"])
{
$tpl->setCurrentBlock("edit_note_form");
$tpl->setVariable("TXT_SUBJECT", $lng->txt("subject"));
if ($a_type == IL_NOTE_PUBLIC)
{
$tpl->setVariable("TXT_NOTE", $lng->txt("notes_comment"));
}
else
{
$tpl->setVariable("TXT_NOTE", $lng->txt("note"));
}
$tpl->setVariable("NOTE_SUBJECT",
ilUtil::prepareFormOutput($note->getSubject()));
$tpl->setVariable("SUB_NOTE", "sub_note");
$tpl->setVariable("TA_NOTE", "note");
$tpl->setVariable("NOTE_CONTENT",
ilUtil::prepareFormOutput($note->getText()));
$tpl->setVariable("BTN_ADD_NOTE", "updateNote");
$tpl->setVariable("TXT_ADD_NOTE", $lng->txt("save"));
$tpl->setVariable("BTN_CANCEL_ADD_NOTE", "cancelUpdateNote");
$tpl->setVariable("TXT_CANCEL_ADD_NOTE", $lng->txt("cancel"));
$tpl->setVariable("VAL_LABEL_NONE", IL_NOTE_UNLABELED);
$tpl->setVariable("TXT_LABEL_NONE", $lng->txt("unlabeled"));
$tpl->setVariable("VAL_LABEL_QUESTION", IL_NOTE_QUESTION);
$tpl->setVariable("TXT_LABEL_QUESTION", $lng->txt("question"));
$tpl->setVariable("VAL_LABEL_IMPORTANT", IL_NOTE_IMPORTANT);
$tpl->setVariable("TXT_LABEL_IMPORTANT", $lng->txt("important"));
$tpl->setVariable("VAL_LABEL_PRO", IL_NOTE_PRO);
$tpl->setVariable("TXT_LABEL_PRO", $lng->txt("pro"));
$tpl->setVariable("VAL_LABEL_CONTRA", IL_NOTE_CONTRA);
$tpl->setVariable("TXT_LABEL_CONTRA", $lng->txt("contra"));
$tpl->setVariable("VAL_NOTE_ID", $_GET["note_id"]);
switch($note->getLabel())
{
$tpl->setVariable("SEL_NONE", 'selected="selected"');
break;
$tpl->setVariable("SEL_IMPORTANT", 'selected="selected"');
break;
$tpl->setVariable("SEL_QUESTION", 'selected="selected"');
break;
$tpl->setVariable("SEL_PRO", 'selected="selected"');
break;
$tpl->setVariable("SEL_CONTRA", 'selected="selected"');
break;
}
$tpl->parseCurrentBlock();
}
else
{
$cnt_col = 2;
// delete note stuff for all private notes
if (($note->getAuthor() == $ilUser->getId() ||
&& ($ilUser->getId() != ANONYMOUS_USER_ID))
{
// only private notes can be deleted by the user
// public notes can be deleted if flag set (outside permission checking)
if (($a_type == IL_NOTE_PRIVATE || $this->public_deletion_enabled)
&& !$this->delete_note
&& !$this->export_html && !$this->print)
{
$tpl->setCurrentBlock("delete_note");
$tpl->setVariable("TXT_DELETE_NOTE", $lng->txt("delete"));
$ilCtrl->setParameterByClass("ilnotegui", "note_id", $note->getId());
$tpl->setVariable("LINK_DELETE_NOTE",
$ilCtrl->getLinkTargetByClass("ilnotegui", "deleteNote")
."#note_".$note->getId());
$tpl->parseCurrentBlock();
}
}
// edit note stuff for all private notes
if ($note->getAuthor() == $ilUser->getId()
&& ($ilUser->getId() != ANONYMOUS_USER_ID))
{
// checkboxes in multiselection mode
if ($this->multi_selection && !$this->delete_note)
{
$tpl->setCurrentBlock("checkbox_col");
$tpl->setVariable("CHK_NOTE", "note[]");
$tpl->setVariable("CHK_NOTE_ID", $note->getId());
$tpl->parseCurrentBlock();
$cnt_col = 1;
}
if (!$this->delete_note && !$this->export_html && !$this->print)
{
$tpl->setCurrentBlock("edit_note");
$tpl->setVariable("TXT_EDIT_NOTE", $lng->txt("edit"));
$ilCtrl->setParameterByClass("ilnotegui", "note_id", $note->getId());
$tpl->setVariable("LINK_EDIT_NOTE",
$ilCtrl->getLinkTargetByClass("ilnotegui", "editNoteForm")
."#note_edit");
$tpl->parseCurrentBlock();
}
}
$tpl->setVariable("CNT_COL", $cnt_col);
// output author account
if ($a_type == IL_NOTE_PUBLIC && ilObject::_exists($note->getAuthor()))
{
$tpl->setCurrentBlock("author");
$tpl->setVariable("VAL_AUTHOR", ilObjUser::_lookupLogin($note->getAuthor()));
$tpl->parseCurrentBlock();
$tpl->setCurrentBlock("user_img");
$tpl->setVariable("USR_IMG",
ilObjUser::_getPersonalPicturePath($note->getAuthor(), "xxsmall"));
$tpl->setVariable("USR_ALT",
ilObjUser::_lookupLogin($note->getAuthor()));
$tpl->parseCurrentBlock();
}
// last edited
if ($note->getUpdateDate() != "0000-00-00 00:00:00")
{
$tpl->setCurrentBlock("last_edit");
$tpl->setVariable("TXT_LAST_EDIT", $lng->txt("last_edited_on"));
$tpl->setVariable("DATE_LAST_EDIT",
$tpl->parseCurrentBlock();
}
// hidden note ids for deletion
if ($this->delete_note)
{
$tpl->setCurrentBlock("delete_ids");
$tpl->setVariable("HID_NOTE", "note[]");
$tpl->setVariable("HID_NOTE_ID", $note->getId());
$tpl->parseCurrentBlock();
}
$target = $note->getObject();
// target objects
$this->showTargets($tpl, $this->rep_obj_id, $note->getId(),
$target["obj_type"], $target["obj_id"]);
$rowclass = ($rowclass != "tblrow1")
? "tblrow1"
: "tblrow2";
if (!$this->export_html && !$this->print)
{
$tpl->setCurrentBlock("note_img");
if ($a_type == IL_NOTE_PUBLIC)
{
$tpl->setVariable("IMG_NOTE", $this->comment_img[$note->getLabel()]["img"]);
$tpl->setVariable("ALT_NOTE", $this->comment_img[$note->getLabel()]["alt"]);
}
else
{
$tpl->setVariable("IMG_NOTE", $this->note_img[$note->getLabel()]["img"]);
$tpl->setVariable("ALT_NOTE", $this->note_img[$note->getLabel()]["alt"]);
}
$tpl->parseCurrentBlock();
}
else
{
switch ($note->getLabel())
{
$tpl->setVariable("EXP_ICON", "[ ]");
break;
$tpl->setVariable("EXP_ICON", "[!]");
break;
$tpl->setVariable("EXP_ICON", "[?]");
break;
$tpl->setVariable("EXP_ICON", "[+]");
break;
$tpl->setVariable("EXP_ICON", "[-]");
break;
}
}
$tpl->setCurrentBlock("note");
$tpl->setVariable("ROWCLASS", $rowclass);
$tpl->setVariable("TXT_DATE", $lng->txt("date"));
$tpl->setVariable("TXT_CREATED", $lng->txt("create_date"));
$tpl->setVariable("VAL_DATE",
ilDatePresentation::formatDate(new ilDateTime($note->getCreationDate(), IL_CAL_DATETIME)));
$tpl->setVariable("NOTE_TEXT", nl2br($note->getText()));
$tpl->setVariable("VAL_SUBJECT", $note->getSubject());
$tpl->setVariable("NOTE_ID", $note->getId());
$tpl->parseCurrentBlock();
}
$tpl->setCurrentBlock("note_row");
$tpl->parseCurrentBlock();
}
// multiple items commands
if ($this->multi_selection && !$this->delete_note && !$this->edit_note_form)
{
$tpl->setCurrentBlock("multiple_commands");
$tpl->setVariable("TXT_SELECT_ALL", $this->lng->txt("select_all"));
$tpl->setVariable("IMG_ARROW", ilUtil::getImagePath("arrow_downright.gif"));
$tpl->setVariable("ALT_ARROW", $this->lng->txt("actions"));
$tpl->setVariable("TXT_DELETE_NOTES", $this->lng->txt("delete"));
$tpl->setVariable("TXT_PRINT_NOTES", $this->lng->txt("print"));
$tpl->setVariable("TXT_EXPORT_NOTES", $this->lng->txt("exp_html"));
$tpl->parseCurrentBlock();
}
// delete / cancel row
if ($this->delete_note)
{
$tpl->setCurrentBlock("delete_cancel");
$tpl->setVariable("TXT_DEL_NOTES", $this->lng->txt("delete"));
$tpl->setVariable("TXT_CANCEL_DEL_NOTES", $this->lng->txt("cancel"));
$tpl->parseCurrentBlock();
}
// print
if ($this->print)
{
$tpl->touchBlock("print_js");
$tpl->setCurrentBlock("print_back");
$tpl->setVariable("LINK_BACK", $this->ctrl->getLinkTarget($this, "showNotes"));
$tpl->setVariable("TXT_BACK", $this->lng->txt("back"));
$tpl->parseCurrentBlock();
}
}
if ($this->delete_note && count($notes) == 0)
{
return "";
}
else
{
return $tpl->get();
}
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilNoteGUI::getNotesHTML ( )

Definition at line 194 of file class.ilNoteGUI.php.

References $ilCtrl, $lng, getNoteListHTML(), IL_NOTE_PRIVATE, and IL_NOTE_PUBLIC.

Referenced by addNote(), addNoteForm(), cancelAddNote(), cancelDelete(), cancelUpdateNote(), confirmDelete(), deleteNote(), deleteNotes(), editNoteForm(), exportNotesHTML(), hideNotes(), printNotes(), showAllPublicNotes(), showMyPublicNotes(), showNotes(), and updateNote().

{
global $ilUser, $lng, $ilCtrl;
$lng->loadLanguageModule("notes");
$ntpl = new ilTemplate("tpl.notes_and_comments.html", true, true,
"Services/Notes");
if ($this->private_enabled && ($ilUser->getId() != ANONYMOUS_USER_ID))
{
$ntpl->setVariable("NOTES", $this->getNoteListHTML(IL_NOTE_PRIVATE));
}
$comments_col = false;
if ($this->public_enabled && (!$this->delete_note || $this->public_deletion_enabled))
{
$ntpl->setVariable("COMMENTS", $this->getNoteListHTML(IL_NOTE_PUBLIC));
$comments_col = true;
}
// Comments Settings
if ($this->comments_settings)
{
$notes_settings = new ilSetting("notes");
$id = $this->rep_obj_id."_".$this->obj_id."_".$this->obj_type;
$active = $notes_settings->get("activate_".$id);
$ntpl->setCurrentBlock("comments_settings");
if ($active)
{
$ntpl->setVariable("TXT_COMMENTS_SETTINGS", $lng->txt("notes_deactivate_comments"));
$ntpl->setVariable("HREF_COMMENTS_SETTINGS",
$ilCtrl->getLinkTargetByClass("ilnotegui", "deactivateComments", "notes_top"));
}
else
{
$ntpl->setVariable("TXT_COMMENTS_SETTINGS", $lng->txt("notes_activate_comments"));
$ntpl->setVariable("HREF_COMMENTS_SETTINGS",
$ilCtrl->getLinkTargetByClass("ilnotegui", "activateComments", "notes_top"));
}
$ntpl->parseCurrentBlock();
$comments_col = true;
}
if ($comments_col)
{
$ntpl->setCurrentBlock("comments_col");
$ntpl->parseCurrentBlock();
}
return $ntpl->get();
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilNoteGUI::getPDNoteHTML (   $note_id)

Note display for personal desktop.

Definition at line 730 of file class.ilNoteGUI.php.

References $ilCtrl, $img, $lng, $tpl, ilDatePresentation\formatDate(), ilUtil\getImagePath(), IL_CAL_DATETIME, and showTargets().

{
global $lng, $ilCtrl, $ilUser;
$tpl = new ilTemplate("tpl.pd_note.html", true, true, "Services/Notes");
$note = new ilNote($note_id);
$target = $note->getObject();
if ($note->getAuthor() != $ilUser->getId())
{
return;
}
$img = ilUtil::getImagePath("note_".$note->getLabel().".gif");
$alt = $lng->txt("note");
$tpl->setCurrentBlock("edit_note");
$ilCtrl->setParameterByClass("ilnotegui", "rel_obj", $target["rep_obj_id"]);
$ilCtrl->setParameterByClass("ilnotegui", "note_id", $note_id);
$ilCtrl->setParameterByClass("ilnotegui", "note_type", $note->getType());
$tpl->setVariable("LINK_EDIT_NOTE",
$ilCtrl->getLinkTargetByClass(array("ilpersonaldesktopgui", "ilpdnotesgui", "ilnotegui"),
"editNoteForm"));
$tpl->setVariable("TXT_EDIT_NOTE", $lng->txt("edit"));
$tpl->parseCurrentBlock();
$ilCtrl->clearParametersByClass("ilnotegui");
$tpl->setCurrentBlock("note_img");
$tpl->setVariable("IMG_NOTE", $this->note_img[$note->getLabel()]["img"]);
$tpl->setVariable("ALT_NOTE", $this->note_img[$note->getLabel()]["alt"]);
$tpl->parseCurrentBlock();
// last edited
if ($note->getUpdateDate() != "0000-00-00 00:00:00")
{
$tpl->setCurrentBlock("last_edit");
$tpl->setVariable("TXT_LAST_EDIT", $lng->txt("last_edited_on"));
$tpl->setVariable("DATE_LAST_EDIT",
$tpl->parseCurrentBlock();
}
$tpl->setVariable("TXT_CREATED", $lng->txt("create_date"));
$tpl->setVariable("VAL_DATE",
ilDatePresentation::formatDate(new ilDateTime($note->getCreationDate(), IL_CAL_DATETIME)));
$tpl->setVariable("VAL_SUBJECT", $note->getSubject());
$tpl->setVariable("NOTE_TEXT", nl2br($note->getText()));
$this->showTargets($tpl, $target["rep_obj_id"], $note_id, $target["obj_type"], $target["obj_id"]);
return $tpl->get();
}

+ Here is the call graph for this function:

ilNoteGUI::hideNotes ( )

hide notes

Definition at line 1034 of file class.ilNoteGUI.php.

References $_GET, getNotesHTML(), and IL_NOTE_PRIVATE.

{
global $ilUser;
$suffix = ($_GET["note_type"] == IL_NOTE_PRIVATE)
? "private"
: "public";
$ilUser->writePref("notes_".$suffix, "n");
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::ilNoteGUI (   $a_rep_obj_id = "",
  $a_obj_id = "",
  $a_obj_type = "",
  $a_include_subobjects = false 
)

constructor, specifies notes set

Parameters
$a_rep_obj_idint object id of repository object (0 for personal desktop)
$a_obj_idint subobject id (0 for repository items, user id for personal desktop)
$a_obj_typestring "pd" for personal desktop
$a_include_subobjectsstring include all subobjects of rep object (e.g. pages)

Definition at line 48 of file class.ilNoteGUI.php.

References $ilCtrl, $lng, ilUtil\getImagePath(), IL_NOTE_CONTRA, IL_NOTE_IMPORTANT, IL_NOTE_PRO, IL_NOTE_QUESTION, and IL_NOTE_UNLABELED.

{
global $ilCtrl, $lng;
$lng->loadLanguageModule("notes");
$this->rep_obj_id = $a_rep_obj_id;
$this->obj_id = $a_obj_id;
$this->obj_type = $a_obj_type;
$this->inc_sub = $a_include_subobjects;
$this->ctrl =& $ilCtrl;
$this->lng =& $lng;
$this->add_note_form = false;
$this->edit_note_form = false;
$this->private_enabled = false;
$notes_settings = new ilSetting("notes");
$id = $this->rep_obj_id."_".$this->obj_id."_".$this->obj_type;
if ($notes_settings->get("activate_".$id))
{
$this->public_enabled = true;
}
else
{
$this->public_enabled = false;
}
$this->enable_hiding = true;
$this->targets_enabled = false;
$this->multi_selection = false;
$this->export_html = false;
$this->print = false;
$this->comments_settings = false;
$this->note_img = array(
"img" => ilUtil::getImagePath("note_unlabeled.gif"),
"alt" => $lng->txt("note")),
"img" => ilUtil::getImagePath("note_important.gif"),
"alt" => $lng->txt("note").", ".$lng->txt("important")),
IL_NOTE_QUESTION => array(
"img" => ilUtil::getImagePath("note_question.gif"),
"alt" => $lng->txt("note").", ".$lng->txt("question")),
IL_NOTE_PRO => array(
"img" => ilUtil::getImagePath("note_pro.gif"),
"alt" => $lng->txt("note").", ".$lng->txt("pro")),
IL_NOTE_CONTRA => array(
"img" => ilUtil::getImagePath("note_contra.gif"),
"alt" => $lng->txt("note").", ".$lng->txt("contra"))
);
$this->comment_img = array(
"img" => ilUtil::getImagePath("comment_unlabeled.gif"),
"alt" => $lng->txt("notes_comment")),
"img" => ilUtil::getImagePath("comment_important.gif"),
"alt" => $lng->txt("notes_comment").", ".$lng->txt("important")),
IL_NOTE_QUESTION => array(
"img" => ilUtil::getImagePath("comment_question.gif"),
"alt" => $lng->txt("notes_comment").", ".$lng->txt("question")),
IL_NOTE_PRO => array(
"img" => ilUtil::getImagePath("comment_pro.gif"),
"alt" => $lng->txt("notes_comment").", ".$lng->txt("pro")),
IL_NOTE_CONTRA => array(
"img" => ilUtil::getImagePath("comment_contra.gif"),
"alt" => $lng->txt("notes_comment").", ".$lng->txt("contra"))
);
}

+ Here is the call graph for this function:

ilNoteGUI::printNotes ( )

notes print view screen

Definition at line 1006 of file class.ilNoteGUI.php.

References $tpl, exit, and getNotesHTML().

{
$tpl = new ilTemplate("tpl.main.html", true, true);
$this->print = true;
$this->multi_selection = false;
$tpl->setVariable("CONTENT", $this->getNotesHTML());
echo $tpl->get(); exit;
}

+ Here is the call graph for this function:

ilNoteGUI::showAllPublicNotes ( )

show all public notes to user

Definition at line 1049 of file class.ilNoteGUI.php.

References getNotesHTML().

{
global $ilUser;
$ilUser->writePref("notes_pub_all", "y");
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::showMyPublicNotes ( )

show only public notes of user

Definition at line 1061 of file class.ilNoteGUI.php.

References getNotesHTML().

{
global $ilUser;
$ilUser->writePref("notes_pub_all", "n");
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::showNotes ( )

show notes

Definition at line 1019 of file class.ilNoteGUI.php.

References $_GET, getNotesHTML(), and IL_NOTE_PRIVATE.

{
global $ilUser;
$suffix = ($_GET["note_type"] == IL_NOTE_PRIVATE)
? "private"
: "public";
$ilUser->writePref("notes_".$suffix, "y");
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

ilNoteGUI::showTargets ( $tpl,
  $a_rep_obj_id,
  $a_note_id,
  $a_obj_type,
  $a_obj_id 
)

show related objects as links

Definition at line 784 of file class.ilNoteGUI.php.

References $location, $ref_id, $title, $tpl, ilObject\_getAllReferences(), ilObject\_lookupObjId(), ilObject\_lookupTitle(), ilObject\_lookupType(), and ilUtil\appendUrlParameterString().

Referenced by getNoteListHTML(), and getPDNoteHTML().

{
global $tree, $ilAccess, $objDefinition;
if ($this->targets_enabled)
{
if ($a_rep_obj_id > 0)
{
// get all visible references of target object
$ref_ids = ilObject::_getAllReferences($a_rep_obj_id);
$vis_ref_ids = array();
foreach($ref_ids as $ref_id)
{
if ($ilAccess->checkAccess("visible", "", $ref_id))
{
$vis_ref_ids[] = $ref_id;
}
}
// output links to targets
if (count($vis_ref_ids) > 0)
{
foreach($vis_ref_ids as $vis_ref_id)
{
$type = ilObject::_lookupType($vis_ref_id, true);
if ($a_obj_type != "pg")
{
if (!is_object($this->item_list_gui[$type]))
{
$class = $objDefinition->getClassName($type);
$location = $objDefinition->getLocation($type);
$full_class = "ilObj".$class."ListGUI";
include_once($location."/class.".$full_class.".php");
$this->item_list_gui[$type] = new $full_class();
}
$title = ilObject::_lookupTitle($a_rep_obj_id);
$this->item_list_gui[$type]->initItem($vis_ref_id, $a_rep_obj_id, $title);
$link = $this->item_list_gui[$type]->getCommandLink("infoScreen");
// workaround, because # anchor can't be passed through frameset
$link = ilUtil::appendUrlParameterString($link, "anchor=note_".$a_note_id);
$link = $this->item_list_gui[$type]->appendRepositoryFrameParameter($link)."#note_".$a_note_id;
}
else
{
$title = ilObject::_lookupTitle($a_rep_obj_id);
$link = "goto.php?target=pg_".$a_obj_id."_".$vis_ref_id;
}
$par_id = $tree->getParentId($vis_ref_id);
if ($this->export_html || $this->print)
{
$tpl->setCurrentBlock("exp_target_object");
}
else
{
$tpl->setCurrentBlock("target_object");
$tpl->setVariable("LINK_TARGET", $link);
}
$tpl->setVariable("TXT_CONTAINER",
$tpl->setVariable("TXT_TARGET",
$tpl->parseCurrentBlock();
}
$tpl->touchBlock("target_objects");
}
}
}
}

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

ilNoteGUI::updateNote ( )

update note

Definition at line 917 of file class.ilNoteGUI.php.

References getNotesHTML(), and ilUtil\stripSlashes().

{
global $ilUser;
$note = new ilNote($_POST["note_id"]);
//$note->setObject($this->obj_type, $this->rep_obj_id, $this->obj_id);
//$note->setType(IL_NOTE_PRIVATE);
//$note->setAuthor($ilUser->getId());
$note->setText(ilUtil::stripSlashes($_POST["note"]));
$note->setSubject(ilUtil::stripSlashes($_POST["sub_note"]));
$note->setLabel($_POST["note_label"]);
$note->update();
return $this->getNotesHTML();
}

+ Here is the call graph for this function:

Field Documentation

ilNoteGUI::$public_deletion_enabled = false

Definition at line 38 of file class.ilNoteGUI.php.

Referenced by getNoteListHTML().


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