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