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 | |
| 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 () | |
| getNoteListHTML ($a_type=IL_NOTE_PRIVATE) | |
| get notes 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 | |
Notes GUI class.
An instance of this class handles all notes (and their lists) of an object.
Definition at line 36 of file class.ilNoteGUI.php.
| ilNoteGUI::addNote | ( | ) |
add note
Definition at line 724 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 692 of file class.ilNoteGUI.php.
References $_GET, and getNotesHTML().
{
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 708 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 801 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 716 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 809 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::deleteNote | ( | ) |
delete note confirmation
Definition at line 774 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 783 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 765 of file class.ilNoteGUI.php.
References getNotesHTML().
{
$this->edit_note_form = true;
return $this->getNotesHTML();
}
Here is the call graph for this function:| ilNoteGUI::enableHiding | ( | $ | a_enable = true |
) |
enable hiding
Definition at line 137 of file class.ilNoteGUI.php.
{
$this->enable_hiding = $a_enable;
}
| ilNoteGUI::enableMultiSelection | ( | $ | a_enable = true |
) |
enable multi selection (checkboxes and commands)
Definition at line 153 of file class.ilNoteGUI.php.
{
$this->multi_selection = $a_enable;
}
| ilNoteGUI::enablePrivateNotes | ( | $ | a_enable = true |
) |
enable private notes
Definition at line 113 of file class.ilNoteGUI.php.
{
$this->private_enabled = $a_enable;
}
| ilNoteGUI::enablePublicNotes | ( | $ | a_enable = true |
) |
enable public notes
Definition at line 121 of file class.ilNoteGUI.php.
{
$this->public_enabled = $a_enable;
}
| ilNoteGUI::enablePublicNotesDeletion | ( | $ | a_enable = true |
) |
enable public notes
Definition at line 129 of file class.ilNoteGUI.php.
{
$this->public_deletion_enabled = $a_enable;
}
| ilNoteGUI::enableTargets | ( | $ | a_enable = true |
) |
enable target objects
Definition at line 145 of file class.ilNoteGUI.php.
{
$this->targets_enabled = $a_enable;
}
| & ilNoteGUI::executeCommand | ( | ) |
execute command
Definition at line 92 of file class.ilNoteGUI.php.
| ilNoteGUI::exportNotesHTML | ( | ) |
export selected notes to html
Definition at line 822 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 list as html code
Definition at line 182 of file class.ilNoteGUI.php.
References $_GET, $ilCtrl, $lng, $tpl, ilNote::_getNotesOfObject(), ilObjUser::_lookupLogin(), ilUtil::getImagePath(), 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 ($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);
$ilCtrl->setParameterByClass("ilnotegui", "note_type", IL_NOTE_PRIVATE);
}
else
{
$tpl->setVariable("TXT_NOTES", $lng->txt("public_notes").$cnt_str);
$ilCtrl->setParameterByClass("ilnotegui", "note_type", IL_NOTE_PUBLIC);
}
$tpl->setVariable("FORMACTION", $ilCtrl->getFormAction($this));
$tpl->setVariable("FTOKEN", session_id());
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");
$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"));
$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"));
$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"));
$tpl->setVariable("TXT_ALL_PUB_NOTES", $lng->txt("note_all_pub_notes"));
$tpl->parseCurrentBlock();
}
else
{
$tpl->setCurrentBlock("my_pub_notes");
$tpl->setVariable("LINK_MY_PUB_NOTES", $this->ctrl->getLinkTargetByClass("ilnotegui", "showMyPublicNotes"));
$tpl->setVariable("TXT_MY_PUB_NOTES", $lng->txt("note_my_pub_notes"));
$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"));
$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"));
$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())
{
case IL_NOTE_UNLABELED:
$tpl->setVariable("SEL_NONE", 'selected="selected"');
break;
case IL_NOTE_IMPORTANT:
$tpl->setVariable("SEL_IMPORTANT", 'selected="selected"');
break;
case IL_NOTE_QUESTION:
$tpl->setVariable("SEL_QUESTION", 'selected="selected"');
break;
case IL_NOTE_PRO:
$tpl->setVariable("SEL_PRO", 'selected="selected"');
break;
case IL_NOTE_CONTRA:
$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() ||
$this->public_deletion_enabled)
&& ($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)
{
$tpl->setCurrentBlock("author");
$tpl->setVariable("VAL_AUTHOR", 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", $note->getUpdateDate());
$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");
$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())
{
case IL_NOTE_UNLABELED:
$tpl->setVariable("EXP_ICON", "[ ]");
break;
case IL_NOTE_IMPORTANT:
$tpl->setVariable("EXP_ICON", "[!]");
break;
case IL_NOTE_QUESTION:
$tpl->setVariable("EXP_ICON", "[?]");
break;
case IL_NOTE_PRO:
$tpl->setVariable("EXP_ICON", "[+]");
break;
case IL_NOTE_CONTRA:
$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", $note->getCreationDate());
$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 161 of file class.ilNoteGUI.php.
References getNoteListHTML().
Referenced by addNote(), addNoteForm(), cancelAddNote(), cancelDelete(), cancelUpdateNote(), confirmDelete(), deleteNote(), deleteNotes(), editNoteForm(), exportNotesHTML(), hideNotes(), printNotes(), showAllPublicNotes(), showMyPublicNotes(), showNotes(), and updateNote().
{
global $ilUser;
$html = "";
if ($this->private_enabled && ($ilUser->getId() != ANONYMOUS_USER_ID))
{
$html.= $this->getNoteListHTML(IL_NOTE_PRIVATE);
}
if ($this->public_enabled && (!$this->delete_note || $this->public_deletion_enabled))
{
$html.= $this->getNoteListHTML(IL_NOTE_PUBLIC);
}
return $html;
}
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 561 of file class.ilNoteGUI.php.
References $ilCtrl, $img, $lng, $tpl, ilUtil::getImagePath(), 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", $note->getUpdateDate());
$tpl->parseCurrentBlock();
}
$tpl->setVariable("TXT_CREATED", $lng->txt("create_date"));
$tpl->setVariable("VAL_DATE", $note->getCreationDate());
$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 863 of file class.ilNoteGUI.php.
References $_GET, and getNotesHTML().
{
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
| $a_rep_obj_id | int object id of repository object (0 for personal desktop) | |
| $a_obj_id | int subobject id (0 for repository items, user id for personal desktop) | |
| $a_obj_type | string "pd" for personal desktop | |
| $a_include_subobjects | string include all subobjects of rep object (e.g. pages) |
Definition at line 48 of file class.ilNoteGUI.php.
References $ilCtrl, $lng, and ilUtil::getImagePath().
{
global $ilCtrl, $lng;
$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;
$this->public_enabled = false;
$this->enable_hiding = true;
$this->targets_enabled = false;
$this->multi_selection = false;
$this->export_html = false;
$this->print = false;
$this->note_img = array(
IL_NOTE_UNLABELED => array(
"img" => ilUtil::getImagePath("note_unlabeled.gif"),
"alt" => $lng->txt("note")),
IL_NOTE_IMPORTANT => array(
"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"))
);
}
Here is the call graph for this function:| ilNoteGUI::printNotes | ( | ) |
notes print view screen
Definition at line 835 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 878 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 890 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 848 of file class.ilNoteGUI.php.
References $_GET, and getNotesHTML().
{
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 613 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",
ilObject::_lookupTitle(
ilObject::_lookupObjId($par_id)));
$tpl->setVariable("TXT_TARGET",
$title);
$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 746 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:| ilNoteGUI::$public_deletion_enabled = false |
Definition at line 38 of file class.ilNoteGUI.php.
1.7.1