Merge branch 'wip-mdl-48190-m27' of https://github.com/rajeshtaneja/moodle into MOODL...
[moodle.git] / user / messageselect.php
blob1fa4eb0e188603c638dc3c4dd1f7b2d9708720cb
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 is part of the User section Moodle
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.'/message/lib.php');
28 $id = required_param('id', PARAM_INT);
29 $messagebody = optional_param('messagebody', '', PARAM_CLEANHTML);
30 $send = optional_param('send', '', PARAM_BOOL);
31 $preview = optional_param('preview', '', PARAM_BOOL);
32 $edit = optional_param('edit', '', PARAM_BOOL);
33 $returnto = optional_param('returnto', '', PARAM_LOCALURL);
34 $format = optional_param('format', FORMAT_MOODLE, PARAM_INT);
35 $deluser = optional_param('deluser', 0, PARAM_INT);
37 $url = new moodle_url('/user/messageselect.php', array('id' => $id));
38 if ($messagebody !== '') {
39 $url->param('messagebody', $messagebody);
41 if ($send !== '') {
42 $url->param('send', $send);
44 if ($preview !== '') {
45 $url->param('preview', $preview);
47 if ($edit !== '') {
48 $url->param('edit', $edit);
50 if ($returnto !== '') {
51 $url->param('returnto', $returnto);
53 if ($format !== FORMAT_MOODLE) {
54 $url->param('format', $format);
56 if ($deluser !== 0) {
57 $url->param('deluser', $deluser);
59 $PAGE->set_url($url);
61 if (!$course = $DB->get_record('course', array('id' => $id))) {
62 print_error('invalidcourseid');
65 require_login($course);
67 $coursecontext = context_course::instance($id); // Course context.
68 $systemcontext = context_system::instance(); // SYSTEM context.
69 require_capability('moodle/course:bulkmessaging', $coursecontext);
71 if (empty($SESSION->emailto)) {
72 $SESSION->emailto = array();
74 if (!array_key_exists($id, $SESSION->emailto)) {
75 $SESSION->emailto[$id] = array();
78 if ($deluser) {
79 if (array_key_exists($id, $SESSION->emailto) && array_key_exists($deluser, $SESSION->emailto[$id])) {
80 unset($SESSION->emailto[$id][$deluser]);
84 if (empty($SESSION->emailselect[$id]) || $messagebody) {
85 $SESSION->emailselect[$id] = array('messagebody' => $messagebody);
88 $messagebody = $SESSION->emailselect[$id]['messagebody'];
90 $count = 0;
92 if ($data = data_submitted()) {
93 require_sesskey();
94 $namefields = get_all_user_name_fields(true);
95 foreach ($data as $k => $v) {
96 if (preg_match('/^(user|teacher)(\d+)$/', $k, $m)) {
97 if (!array_key_exists($m[2], $SESSION->emailto[$id])) {
98 if ($user = $DB->get_record_select('user', "id = ?", array($m[2]), 'id,
99 ' . $namefields . ', idnumber, email, mailformat, lastaccess, lang, maildisplay')) {
100 $SESSION->emailto[$id][$m[2]] = $user;
101 $count++;
108 if ($course->id == SITEID) {
109 $strtitle = get_string('sitemessage');
110 $PAGE->set_pagelayout('admin');
111 } else {
112 $strtitle = get_string('coursemessage');
113 $PAGE->set_pagelayout('incourse');
116 $link = null;
117 if (has_capability('moodle/course:viewparticipants', $coursecontext) ||
118 has_capability('moodle/site:viewparticipants', $systemcontext)) {
119 $link = new moodle_url("/user/index.php", array('id' => $course->id));
121 $PAGE->navbar->add(get_string('participants'), $link);
122 $PAGE->navbar->add($strtitle);
123 $PAGE->set_title($strtitle);
124 $PAGE->set_heading($strtitle);
125 echo $OUTPUT->header();
126 // If messaging is disabled on site, we can still allow users with capabilities to send emails instead.
127 if (empty($CFG->messaging)) {
128 echo $OUTPUT->notification(get_string('messagingdisabled', 'message'));
131 if ($count) {
132 if ($count == 1) {
133 $heading = get_string('addedrecip', 'moodle', $count);
134 } else {
135 $heading = get_string('addedrecips', 'moodle', $count);
137 echo $OUTPUT->heading($heading);
140 if (!empty($messagebody) && !$edit && !$deluser && ($preview || $send)) {
141 require_sesskey();
142 if (count($SESSION->emailto[$id])) {
143 if (!empty($preview)) {
144 echo '<form method="post" action="messageselect.php" style="margin: 0 20px;">
145 <input type="hidden" name="returnto" value="'.s($returnto).'" />
146 <input type="hidden" name="id" value="'.$id.'" />
147 <input type="hidden" name="format" value="'.$format.'" />
148 <input type="hidden" name="sesskey" value="' . sesskey() . '" />
150 echo "<h3>".get_string('previewhtml')."</h3>";
151 echo "<div class=\"messagepreview\">\n".format_text($messagebody, $format)."\n</div>\n";
152 echo '<p align="center"><input type="submit" name="send" value="'.get_string('sendmessage', 'message').'" />'."\n";
153 echo '<input type="submit" name="edit" value="'.get_string('update').'" /></p>';
154 echo "\n</form>";
155 } else if (!empty($send)) {
156 $good = 1;
157 foreach ($SESSION->emailto[$id] as $user) {
158 $good = $good && message_post_message($USER, $user, $messagebody, $format);
160 if (!empty($good)) {
161 echo $OUTPUT->heading(get_string('messagedselectedusers'));
162 unset($SESSION->emailto[$id]);
163 unset($SESSION->emailselect[$id]);
164 } else {
165 echo $OUTPUT->heading(get_string('messagedselectedusersfailed'));
167 echo '<p align="center"><a href="index.php?id='.$id.'">'.get_string('backtoparticipants').'</a></p>';
169 echo $OUTPUT->footer();
170 exit;
171 } else {
172 echo $OUTPUT->notification(get_string('nousersyet'));
176 echo '<p align="center"><a href="'.$returnto.'">'.get_string("keepsearching").'</a>'.
177 ((count($SESSION->emailto[$id])) ? ', '.get_string('usemessageform') : '').'</p>';
179 if ((!empty($send) || !empty($preview) || !empty($edit)) && (empty($messagebody))) {
180 echo $OUTPUT->notification(get_string('allfieldsrequired'));
183 if (count($SESSION->emailto[$id])) {
184 require_sesskey();
185 require("message.html");
188 echo $OUTPUT->footer();