Merge branch 'MDL-46688_26' of git://github.com/timhunt/moodle into MOODLE_26_STABLE
[moodle.git] / user / addnote.php
blob75f06ab113d412f00afd0167e30d7947d0b2a5d4
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * This file allows you to add a note for a user
21 * @copyright 1999 Martin Dougiamas http://dougiamas.com
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23 * @package user
26 require_once("../config.php");
27 require_once($CFG->dirroot .'/notes/lib.php');
29 $id = required_param('id', PARAM_INT); // course id
30 $users = optional_param_array('userid', array(), PARAM_INT); // array of user id
31 $contents = optional_param_array('contents', array(), PARAM_RAW); // array of user notes
32 $states = optional_param_array('states', array(), PARAM_ALPHA); // array of notes states
34 $PAGE->set_url('/user/addnote.php', array('id'=>$id));
36 if (! $course = $DB->get_record('course', array('id'=>$id))) {
37 print_error('invalidcourseid');
40 $context = context_course::instance($id);
41 require_login($course);
43 // to create notes the current user needs a capability
44 require_capability('moodle/notes:manage', $context);
46 if (empty($CFG->enablenotes)) {
47 print_error('notesdisabled', 'notes');
50 if (!empty($users) && confirm_sesskey()) {
51 if (count($users) != count($contents) || count($users) != count($states)) {
52 print_error('invalidformdata', '', $CFG->wwwroot.'/user/index.php?id='.$id);
55 $note = new stdClass();
56 $note->courseid = $id;
57 $note->format = FORMAT_PLAIN;
58 foreach ($users as $k => $v) {
59 if (!$user = $DB->get_record('user', array('id'=>$v)) || empty($contents[$k])) {
60 continue;
62 $note->id = 0;
63 $note->content = $contents[$k];
64 $note->publishstate = $states[$k];
65 $note->userid = $v;
66 note_save($note);
68 redirect("$CFG->wwwroot/user/index.php?id=$id");
71 /// Print headers
73 $straddnote = get_string('addnewnote', 'notes');
75 $PAGE->navbar->add($straddnote);
76 $PAGE->set_title("$course->shortname: ".get_string('extendenrol'));
77 $PAGE->set_heading($course->fullname);
79 echo $OUTPUT->header();
80 // this will contain all available the based On select options, but we'll disable some on them on a per user basis
82 echo $OUTPUT->heading($straddnote);
83 echo '<form method="post" action="addnote.php">';
84 echo '<fieldset class="invisiblefieldset">';
85 echo '<input type="hidden" name="id" value="'.$course->id.'" />';
86 echo '<input type="hidden" name="sesskey" value="'.sesskey().'" />';
87 echo '</fieldset>';
88 $table = new html_table();
89 $table->head = array (get_string('fullnameuser'),
90 get_string('content', 'notes'),
91 get_string('publishstate', 'notes') . $OUTPUT->help_icon('publishstate', 'notes'),
93 $table->align = array ('left', 'center', 'center');
94 $state_names = note_get_state_names();
96 // the first time list hack
97 if (empty($users) and $post = data_submitted()) {
98 foreach ($post as $k => $v) {
99 if (preg_match('/^user(\d+)$/',$k,$m)) {
100 $users[] = $m[1];
104 foreach ($users as $k => $v) {
105 if(!$user = $DB->get_record('user', array('id'=>$v))) {
106 continue;
108 $checkbox = html_writer::label(get_string('selectnotestate', 'notes'), 'menustates', false, array('class' => 'accesshide'));
109 $checkbox .= html_writer::select($state_names, 'states[' . $k . ']', empty($states[$k]) ? NOTES_STATE_PUBLIC : $states[$k], false, array('id' => 'menustates'));
110 $table->data[] = array(
111 '<input type="hidden" name="userid['.$k.']" value="'.$v.'" />'. fullname($user, true),
112 '<textarea name="contents['. $k . ']" rows="2" cols="40" spellcheck="true">' . strip_tags(@$contents[$k]) . '</textarea>',
113 $checkbox
116 echo html_writer::table($table);
117 echo '<div style="width:100%;text-align:center;"><input type="submit" value="' . get_string('savechanges'). '" /></div></form>';
118 echo $OUTPUT->footer();