Merge branch 'MDL-32573' of git://github.com/danpoltawski/moodle
[moodle.git] / notes / edit.php
blob47aeb2a945bea0738c14f2b72620f8916b155f51
1 <?php
3 require_once('../config.php');
4 require_once('lib.php');
5 require_once('edit_form.php');
7 /// retrieve parameters
8 $noteid = optional_param('id', 0, PARAM_INT);
10 $url = new moodle_url('/notes/edit.php');
12 if ($noteid) {
13 //existing note
14 $url->param('id', $noteid);
15 if (!$note = note_load($noteid)) {
16 print_error('invalidid', 'notes');
19 } else {
20 // adding new note
21 $courseid = required_param('courseid', PARAM_INT);
22 $userid = required_param('userid', PARAM_INT);
23 $state = optional_param('publishstate', NOTES_STATE_PUBLIC, PARAM_ALPHA);
25 $note = new stdClass();
26 $note->courseid = $courseid;
27 $note->userid = $userid;
28 $note->publishstate = $state;
30 $url->param('courseid', $courseid);
31 $url->param('userid', $userid);
32 if ($state !== NOTES_STATE_PUBLIC) {
33 $url->param('publishstate', $state);
37 $PAGE->set_url($url);
39 /// locate course information
40 if (!$course = $DB->get_record('course', array('id'=>$note->courseid))) {
41 print_error('invalidcourseid');
44 /// locate user information
45 if (!$user = $DB->get_record('user', array('id'=>$note->userid))) {
46 print_error('invaliduserid');
49 /// require login to access notes
50 require_login($course);
52 /// locate context information
53 $context = get_context_instance(CONTEXT_COURSE, $course->id);
54 require_capability('moodle/notes:manage', $context);
56 if (empty($CFG->enablenotes)) {
57 print_error('notesdisabled', 'notes');
60 /// create form
61 $noteform = new note_edit_form();
63 /// set defaults
64 $noteform->set_data($note);
66 /// if form was cancelled then return to the notes list of the note
67 if ($noteform->is_cancelled()) {
68 redirect($CFG->wwwroot . '/notes/index.php?course=' . $note->courseid . '&amp;user=' . $note->userid);
71 /// if data was submitted and validated, then save it to database
72 if ($note = $noteform->get_data()){
73 if (note_save($note)) {
74 add_to_log($note->courseid, 'notes', 'update', 'index.php?course='.$note->courseid.'&amp;user='.$note->userid . '#note-' . $note->id, 'update note');
76 // redirect to notes list that contains this note
77 redirect($CFG->wwwroot . '/notes/index.php?course=' . $note->courseid . '&amp;user=' . $note->userid);
80 if ($noteid) {
81 $strnotes = get_string('editnote', 'notes');
82 } else {
83 $strnotes = get_string('addnewnote', 'notes');
86 /// output HTML
87 $link = null;
88 if (has_capability('moodle/course:viewparticipants', $context) || has_capability('moodle/site:viewparticipants', get_context_instance(CONTEXT_SYSTEM))) {
89 $link = new moodle_url('/user/index.php',array('id'=>$course->id));
91 $PAGE->navbar->add(get_string('participants'), $link);
92 $PAGE->navbar->add(fullname($user), new moodle_url('/user/view.php', array('id'=>$user->id,'course'=>$course->id)));
93 $PAGE->navbar->add(get_string('notes', 'notes'), new moodle_url('/notes/index.php', array('user'=>$user->id,'course'=>$course->id)));
94 $PAGE->navbar->add($strnotes);
95 $PAGE->set_title($course->shortname . ': ' . $strnotes);
96 $PAGE->set_heading($course->fullname);
98 echo $OUTPUT->header();
99 echo $OUTPUT->heading(fullname($user));
101 $noteform->display();
102 echo $OUTPUT->footer();