2 require_once("../config.php");
3 require_once($CFG->dirroot
.'/notes/lib.php');
5 $id = required_param('id', PARAM_INT
); // course id
6 $users = optional_param('userid', array(), PARAM_INT
); // array of user id
7 $content = optional_param('content', '', PARAM_RAW
); // note content
8 $state = optional_param('state', '', PARAM_ALPHA
); // note publish state
10 if (! $course = get_record('course', 'id', $id)) {
11 error("Course ID is incorrect");
14 $context = get_context_instance(CONTEXT_COURSE
, $id);
15 require_login($course->id
);
17 // to create notes the current user needs a capability
18 require_capability('moodle/notes:manage', $context);
20 if (empty($CFG->enablenotes
)) {
21 print_error('notesdisabled', 'notes');
24 if (!empty($users) && !empty($content) && confirm_sesskey()) {
26 $note->courseid
= $id;
27 $note->format
= FORMAT_PLAIN
;
28 $note->content
= $content;
29 $note->publishstate
= $state;
30 foreach ($users as $k => $v) {
31 if(!$user = get_record('user', 'id', $v)) {
36 if (note_save($note)) {
37 add_to_log($note->courseid
, 'notes', 'add', 'index.php?course='.$note->courseid
.'&user='.$note->userid
. '#note-' . $note->id
, 'add note');
41 redirect("$CFG->wwwroot/user/index.php?id=$id");
46 $straddnote = get_string('groupaddnewnote', 'notes');
49 $navlinks[] = array('name' => $straddnote, 'link' => null, 'type' => 'misc');
50 $navigation = build_navigation($navlinks);
52 print_header("$course->shortname: ".get_string('extendenrol'), $course->fullname
, $navigation, "", "", true, " ", navmenu($course));
54 // this will contain all available the based On select options, but we'll disable some on them on a per user basis
56 print_heading($straddnote);
57 echo '<form method="post" action="groupaddnote.php" >';
58 echo '<div style="width:100%;text-align:center;">';
59 echo '<input type="hidden" name="id" value="'.$course->id
.'" />';
60 echo '<input type="hidden" name="sesskey" value="'.$USER->sesskey
.'" />';
61 $state_names = note_get_state_names();
63 // the first time list hack
65 foreach ($_POST as $k => $v) {
66 if (preg_match('/^user(\d+)$/',$k,$m)) {
72 $strpublishstate = get_string('publishstate', 'notes');
75 foreach ($users as $k => $v) {
76 if(!$user = get_record('user', 'id', $v)) {
79 echo '<input type="hidden" name="userid['.$k.']" value="'.$v.'" />';
80 $userlist[] = fullname($user, true);
83 echo get_string('users'). ': ' . implode(', ', $userlist) . '.';
86 echo '<p>' . get_string('content', 'notes');
87 helpbutton('writing', get_string('helpwriting'));
88 echo '<br /><textarea name="content" rows="5" cols="50">' . strip_tags(@$content) . '</textarea></p>';
90 echo '<p>' . $strpublishstate;
91 helpbutton('status', $strpublishstate, 'notes');
92 choose_from_menu($state_names, 'state', empty($state) ? NOTES_STATE_PUBLIC
: $state, '');
95 echo '<input type="submit" value="' . get_string('savechanges'). '" /></div></form>';
96 print_footer($course);